Consider the following code snippet :
var c = counter(), d = counter(
Home | Discussion Forum
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 :
Answer : A
View More Related Question
1) Consider the following code snippet
o.m(x,y);
Which is an equivalent code for the above code snippet?
2) Consider the following code snippet :
var grand_Total=eval("10*10+5");
The output for the above statement would be :
3) Consider the following code snippet
function f() {};
The above prototype represents a
4) 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 :
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