Q. Which one of the given options can be considered as the correct output of the following code?
Code:var addition=newFunction("number1","number2","return number1+number2");
document.writeln(addition(10,5));
β
Correct Answer: (C)
15