Consider the following code snippet
o.m(x,y);
Which is an e
Home | Discussion Forum
Consider the following code snippet
o.m(x,y);
Which is an equivalent code for the above code snippet?
Answer : B
View More Related Question
1) Which 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?
View Answer
2) Consider the following code snippet :
var string2Num=parseInt("123xyz");
The result for the above code snippet would be :
3) For the below mentioned code snippet:
var o = new Object();
The equivalent statement is:
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 :
var c = counter(), d = counter();
c.count()
d.count()
c.reset()
c.count()
d.count()
The state stored in d is :