Consider the following code snippet :
var string2Num=parseInt("123xyz

Home | Discussion Forum

Consider the following code snippet :

var string2Num=parseInt("123xyz");

The result for the above code snippet would be :

View More Related Question

2) Consider the following code snippet :

var tensquared = (function(x)
{
return x*x;
}
(10));

Will the above code work ?

3) Consider the following code snippet :

 var grand_Total=eval("10*10+5");

The output for the above statement would be :

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

5) What is the purpose of a return statement in a function?

UP Gk Online Test

taiyari24hour.com

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