1. KeyboardEvent.charCode

    A legacy `KeyboardEvent` property that gives the Unicode codepoint number of a character key pressed during a `keypress` event.

  2. KeyboardEvent.code

    A `KeyboardEvent` property representing the physical key that was pressed, ignoring the keyboard layout and ignoring whether any modifier keys were active.

  3. KeyboardEvent.getModifierState()

    `KeyboardEvent` method that returns the state (whether the key is pressed/locked or not) of the given modifier key.

  4. KeyboardEvent.key

    A `KeyboardEvent` property whose value is a string identifying the key that was pressed. Covers character keys, non-character keys (e.g. arrow keys), and dead keys.

  5. KeyboardEvent.location

    A `KeyboardEvent` property that indicates the location of the key on the input device. Useful when there are more than one physical key for the same logical key (e.g. left or right "Control" key; main or numpad "1" key).

  6. KeyboardEvent.which

    A legacy `KeyboardEvent` property that is equivalent to either `KeyboardEvent.keyCode` or `KeyboardEvent.charCode` depending on whether the key is alphanumeric.

  7. keyboardevent api

  8. keyboardevent api: altkey

  9. keyboardevent api: charcode

  10. keyboardevent api: code

  11. keyboardevent api: ctrlkey

  12. keyboardevent api: getmodifierstate

  13. keyboardevent api: getmodifierstate: `"accel"` as `key` parameter

  14. keyboardevent api: getmodifierstate: `"alt"` as `key` parameter

  15. keyboardevent api: getmodifierstate: `"altgraph"` as `key` parameter

  16. keyboardevent api: getmodifierstate: `"capslock"` as `key` parameter

  17. keyboardevent api: getmodifierstate: `"control"` as `key` parameter

  18. keyboardevent api: getmodifierstate: `"fn"` as `key` parameter

  19. keyboardevent api: getmodifierstate: `"meta"` as `key` parameter

  20. keyboardevent api: getmodifierstate: `"numlock"` as `key` parameter

  21. keyboardevent api: getmodifierstate: `"os"` as `key` parameter

  22. keyboardevent api: getmodifierstate: `"scrolllock"` as `key` parameter

  23. keyboardevent api: getmodifierstate: `"shift"` as `key` parameter

  24. keyboardevent api: getmodifierstate: `"symbol"` as `key` parameter

  25. keyboardevent api: initkeyboardevent

  26. keyboardevent api: iscomposing

  27. keyboardevent api: key

  28. keyboardevent api: `keyboardevent()` constructor

  29. keyboardevent api: keycode

  30. keyboardevent api: keyidentifier

  31. keyboardevent api: key: dead key

  32. keyboardevent api: key: non-printable keys

  33. keyboardevent api: key: printable keys

  34. keyboardevent api: location

  35. keyboardevent api: metakey

  36. keyboardevent api: repeat

  37. keyboardevent api: shiftkey