1.

Consider the following code snippet. What does the last statement return ? namespace McqsMentorConsoleApplication var c = counter(), d = counter(); function constfuncs() { var funcs = []; for(var i = 0; i < 10; i++) funcs[i] = function() { return i; }; return funcs; } var funcs = constfuncs(); funcs[5]()

A. 9
B. 0
C. 10
D. None of the mentioned
Answer» D. None of the mentioned


Discussion

No Comment Found