Key 188
188
event.keyCode
188
event.key
n/a
event.code
n/a
Unicode
Comma
Code Examples
Copy and paste these examples to detect the Key 188 key in your JavaScript code
Recommended modern approach
// Modern approach (recommended)
document.addEventListener('keydown', (e) => {
if (e.key === 'Key 188') {
console.log('Key 188 key pressed!');
// Your code here
}
});Related Keys
Other keys commonly used together or in similar contexts