-
Notifications
You must be signed in to change notification settings - Fork 0
keyCodes
Mike Byrne edited this page Jan 25, 2022
·
2 revisions
Abstraction of commonly used key codes.
NB: object not a function
- nothing
- none
- nothing
document.addEventListener('keydown', function(e) {
if (e.keyCode == keyCodes.esc) {
console.log('Escape key pressed');
}
});
- tab
- enter
- esc
- space
- left
- up
- right
- down