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) What is the difference between the two lines given below ? !!(obj1 && obj2); (obj1 && obj2);
View Answer
2) Do functions in JavaScript necessarily return a value ?
View Answer
3) Consider the following code snippet :
var tensquared = (function(x)
{
return x*x;
}
(10));
Will the above code work ?
4) 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
5) Consider the following code snippet :
var grand_Total=eval("10*10+5");
The output for the above statement would be :