On keypress 39 (right arrow) move a simple div right. Like when i press the right arrow on my keyboard the div have to move right.like a game
You can do something like this:
document.querySelector('#myDiv').addEventListener('keyup', function (e) {
if (e.key === 39) {
e.target.style.marginLeft = '10px';
}
})
Note that I didn't check the code if it works, please edit the style as you wish.