What does the code snippet to the right output by console.log?
console.log
function foo(){ console.log(1) } var foo = 2 function foo(){ console.log(3) } foo()
Source Fromopen in new window