Skip to content

Instantly share code, notes, and snippets.

@aq2bq
Last active April 14, 2016 05:00
Show Gist options
  • Save aq2bq/9893393d1f6aee9f503d to your computer and use it in GitHub Desktop.
Save aq2bq/9893393d1f6aee9f503d to your computer and use it in GitHub Desktop.
KONAMI Command
var konamiCommand = (function(i, commands){
function keyDown(e) {
e.keyCode == commands[i] ? i++ : i = 0;
if (i == commands.length) alert('KONAMI!');
}
window.addEventListener('keydown', keyDown);
})(0, [38, 38, 40, 40, 37, 39, 37, 39, 66, 65]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment