I am starting to learn how to code and I came across this snipped of code, and I want to know how this undefined variable is storing the information of the Keydown event?
document.addEventListener("keydown",keyDraw);
function keyDraw(this_variable){
console.log(this_variable);
}