REACT: Add Event Listener

Hi @JP-Dub

When inside a class method and referring to other methods/properties in the class, you need to use the this keyword.

// Your's
document.addEventListener('keydown', handleKeyPress);

// What it should be
document.addEventListener('keydown', this.handleKeyPress);
13 Likes