Now that e.keyCode is deprecated, what should I do if I need the character code of a key press?
if (e.key.charCodeAt() === 97)
is this okay