Consider the following code snippet
function f() {};

The ab

Home | Discussion Forum

Consider the following code snippet

function f() {};

The above prototype represents a

View More Related Question

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 ?

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?

UP Gk Online Test

taiyari24hour.com

Study 2 Online Says....
Kindly log in or signup.