Consider the following code snippet
function f() {};
The ab
Home | Discussion Forum
Consider the following code snippet
function f() {};
The above prototype represents a
Answer : B
View More Related Question
1) For the below mentioned code snippet:
var o = new Object();
The equivalent statement is:
2) Consider the following code snippet
o.m(x,y);
Which is an equivalent code for the above code snippet?
3) 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
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) When does the function name become optional in JavaScript?
View Answer