12345678910



Question 1: function bar() {
return foo;
foo = 10;
function foo() {}
var foo = ´11´;
}
alert(typeof bar());

What is alerted?

1. number
2. function
3. undefined
4. string