e.g. A keypress event will return the below
KeyboardEvent {
charCode: 32,
code: "Space",
key: " ", // space character
keyCode: 32,
which: 32
}
Which (if any) of these are deprecated/should not be used? Code makes sense to me because it's human readable. Afaik, which
is deprecated.