If you have a function f and an object o, you can define a method named m of o

Home | Discussion Forum

If you have a function f and an object o, you can define a method named m of o with

View More Related Question

2) Consider the following code snippet

function f() {};

The above prototype represents a

3) 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 ?

4) The function definitions in JavaScript begins with

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 :

UP Gk Online Test

taiyari24hour.com

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