Which declaration provides the value of a function?
return
cancel
continue
valueOf
Correct Answer : A
Which is an equivalent code to invoke a function m of class o that expects two arguments x and y?
What will be the output of the following JavaScript code?
function addition(a, b) { return a+b; } document.getElementById("test").innerHTML = addition;
Can we use a function as a variable value?