Which of the following is not a valid function call?
var x = display();
display;
x = display();
display();
Correct Answer : B
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?