What will happen if a return statement does not have an associated expression?
Home | Discussion ForumWhat will happen if a return statement does not have an associated expression?
Answer : C
View More Related Question
1) What is the difference between the two lines given below ? !!(obj1 && obj2); (obj1 && obj2);
View Answer
2) Consider the following code snippet :
var string2Num=parseInt("123xyz");
The result for the above code snippet would be :
3) Consider the following code snippet
o.m(x,y);
Which is an equivalent code for the above code snippet?
4) 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 ?
5) If you have a function f and an object o, you can define a method named m of o with