Function Declarations vs Expressions

What is the output of this code?
console.log(typeof bar);
var bar = function() {};
console.log(typeof bar);
Next Question (4/20)