Do functions in JavaScript necessarily return a value ?

Home | Discussion Forum

Do functions in JavaScript necessarily return a value ?

View More Related Question

2) For the below mentioned code snippet:

var o = new Object();

The equivalent statement is:

3) Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?

4) Consider the following code snippet

function f() {};

The above prototype represents a

5) Consider the following code snippet

function hypotenuse(a, b)
{
function square(x)
{
return x*x;
}
return Math.sqrt(square(a) + square(b));
}

What does the above code result?

UP Gk Online Test

taiyari24hour.com

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