Skip to content

Instantly share code, notes, and snippets.

@Costava
Created February 13, 2022 00:40
Show Gist options
  • Save Costava/a5a80bdb8d41b38e9e3aefec4703b78d to your computer and use it in GitHub Desktop.
Save Costava/a5a80bdb8d41b38e9e3aefec4703b78d to your computer and use it in GitHub Desktop.
var count = -3;
document.addEventListener("keyup", function(e) {
if (e.code === 'Space') {
count += 1;
console.log(count);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment