What does the code snippet to the right output by console.log?
console.log
var foo = function bar(){ return 'BFE'; }; console.log(foo()); console.log(bar());
Source Fromopen in new window