How many parameters can be passed to a function?
Any
As much as you want
One for each argument
One argument
Correct Answer : C
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?