Do functions in JavaScript necessarily return a value ?
Home | Discussion ForumDo functions in JavaScript necessarily return a value ?
Answer : C
View More Related Question
1) Consider the following code snippet
function printprops(o)
{
for(var p in o)
console.log(p + ": " + o[p] + "\n");
}
What will the above code snippet result ?
View Answer
2) For the below mentioned code snippet:
var o = new Object();
The equivalent statement is:
3) Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?
4) Consider the following code snippet
function f() {};
The above prototype represents a
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