MCQOPTIONS
Saved Bookmarks
| 1. |
Consider the following code snippet : function constfuncs() { var funcs = []; for(var i = 0; i < 10; i++) funcs[i] = function() { return i; }; return funcs; } var funcs = constfuncs(); funcs[5]() What does the last statement return ? |
| A. | 9 |
| B. | 0 |
| C. | 10 |
| D. | None of the mentioned |
| Answer» D. None of the mentioned | |