Kevin Powell - CommunityKP-C
Kevin Powell - Communityβ€’14mo agoβ€’
7 replies
Blackwolf

What is replacing Javascript keyCode?

how are we writing the following, to see if a letter of the alphabet is being pressed, now keyCode is deprecated?

if (e.keyCode > 64 && e.keyCode < 91) {
        console.log('alphabet letter pressed')
    }
Was this page helpful?