What event will be triggered when a key is pressed on the element with ID "myInput"?
<input type="text" id="myInput">
document.getElementById("myInput").addEventListener('_____', function(){
console.log("Key pressed");
});
What event will be triggered when a key is pressed on the element with ID "myInput"?
<input type="text" id="myInput">
document.getElementById("myInput").addEventListener('_____', function(){
console.log("Key pressed");
});