12345678910



Question 1: function foo(a, b) {
arguments[1] = 2;
alert(b);
}
foo(1);
What value is alerted?

1. 2
2. undefined
3. NAN