JavaScript Key Code 102

102

Key Code Information

event.key

6
The value of the key pressed. Accounts for modifiers keys that return CAPS and alternate chars.

event.location

Numpad
Some keys exist more than once on your keyboard. This provides the location of the key pressed. Try it with both shifts.

event.code

Numpad6
The physical key on the keyboard. Doesn't care if you are holding a modifier like Shift.

event.which

102
event.which and event.keyCode are deprecated in modern browsers. Use .key or .code instead.

Description

Number Pad 6
This is the description we have created. Think it can be improved? PR us on GitHub

Meta Keys

^

Event Dump

{
 "key": "6",
 "keyCode": 102,
 "which": 102,
 "code": "Numpad6",
 "location": 3,
 "description": "Number Pad 6",
 "unicode": "⑥",
 "path": "/numpad-6"
}

Similar Values

Unicode

History