keecode logokeecode

Key 108

108

event.keyCode

108

event.key

n/a

event.code

n/a

Unicode

NumpadDecimal

Code Examples

Copy and paste these examples to detect the Key 108 key in your JavaScript code

Recommended modern approach

// Modern approach (recommended)
document.addEventListener('keydown', (e) => {
  if (e.key === 'Key 108') {
    console.log('Key 108 key pressed!');
    // Your code here
  }
});

Related Keys

Other keys commonly used together or in similar contexts