Vidyalelo
JavaScript · Q20

Array And Function

Programming · JavaScript · question 20

Q20

Consider the following code snippet : var grand_Total=eval("10*10+5"); The output for the above statement would be :

A.
10*10+5
B.
105 as a string
C.
105 as an integer value
Answer
D.
Exception is thrown

Answer: Option C

Solution

Answer: Option C
Solution:
Even if the string value passed as a parameter to eval does represent a numeric value the use of eval() results in an error being generated.