0 / 60 seg.

What event is fired when the user is typing in an input element?

<input type="text" id="myInput">
document.getElementById("myInput").addEventListener('_____', function(){
  console.log("The user is typing");
});