DEV Community

Discussion on: How do I detect if the '+' key is pressed (without the shift)

Collapse
 
ampersanda profile image
Ampersanda

when keydown and some other events, an event has key property that has name of your keyboard key button.

input.addEventListener('keydown', function(e) {
  if (e.key === '+') {
    // ... do your code
  }
});