Skip to content

Instantly share code, notes, and snippets.

@jeevan-vj
Created May 26, 2020 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeevan-vj/f00c70ccf26ea0b9c892906f1cf623a3 to your computer and use it in GitHub Desktop.
Save jeevan-vj/f00c70ccf26ea0b9c892906f1cf623a3 to your computer and use it in GitHub Desktop.
JS Keys Mapping
var Keys = {
backspace: 8,
tab: 9,
enter: 13,
shift: 16,
esc: 27,
space: 32,
pageUp: 33,
pageDown: 34,
end: 35,
home: 36,
left: 37,
up: 38,
right: 39,
down: 40,
delete: 46
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment