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 :
123
123xyz
Exception
NaN
Answer : B
View More Related Question
1) A function with no return value is called
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?
Sum of square of a and b
Square of sum of a and b
Sum of a and b square
None of the mentioned
View Answer
5) What is the purpose of a return statement in a function?
Returns the value and continues executing rest of the statements, if any
Returns the value and stops the program
Returns the value and stops executing the function
Stops executing the function and returns the value
View Answer