JavaScript Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
hardJavaScript
What does this log?
code
foo();
var foo = function () { console.log('expr'); };
function foo() { console.log('decl'); }Loading compiler resources...
Active Recall Drill Session
foo();
var foo = function () { console.log('expr'); };
function foo() { console.log('decl'); }