Consider the following code snippet :
function constfuncs()
{
Home | Discussion Forum
{ Home | Discussion Forum
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 ?
Answer : C
View More Related Question
1) A function with no return value is called
2) Consider the following code snippet
function printprops(o)
{
for(var p in o)
console.log(p + ": " + o[p] + "\n");
}
What will the above code snippet result ?
View Answer
3) When does the function name become optional in JavaScript?
View Answer
4) Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?
5) 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 ?