Which of the following is the correct code for invoking a function without this
Home | Discussion ForumWhich of the following is the correct code for invoking a function without this keyword at all, and also too determine whether the strict mode is in effect?
Answer : C
View More Related Question
1) A function with no return value is called
2) Consider the following code snippet :
var tensquared = (function(x)
{
return x*x;
}
(10));
Will the above code work ?
3) What is the purpose of a return statement in a function?
View Answer
4) 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 ?
5) 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