Tagged Questions
2
votes
1answer
1k views
How to avoid magic numbers when matching an event.keyCode in javascript
Can I avoid magic numbers when matching keypresses in javascript?
An example would be using 13 to match the enter key.
I could specify my own constants, but I don't know if these values are stable ...