JS Test: Function Alias

Last modified by Sergiu Dumitriu on 2018/10/10 17:05

Task: What does the following code return? Why?

var f = function g() { return 23; };
typeof g();