Key Up
✨ Jabont
<html> <head> <title>Let's Start </title> <style> body{ background:red; } </style> </head> <body> <script type="text/javascript"> document.body.onkeyup = function(e){ console.log(e); main.dataset.key = e.key } </script> </body> </html>