According to MDN, we should most definitely not be using the .keyCode property. It is deprecated:
.keyCode
https://developer.mozilla.org/en-US/do
For instance if you want to detect whether the "Enter"-key was clicked or not:
Instead of
event.keyCode === 13
Do it like
event.key === 'Enter'