A function with no return value is called
Answer : A
View More Related Question
1) Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?
2) When does the function name become optional in JavaScript?
View Answer
3) 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 ?
4) What is the purpose of a return statement in a function?
View Answer
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?
View Answer