Function Declarations vs Expressions

What's the output of this specific code example?
var f = function g() { return 23; };
console.log(typeof g());
Next Question (10/20)