A

Admin • 833K Points
Coach

Q. 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?

  • (A) Sum of square of a and b
  • (B) Square of sum of a and b
  • (C) Sum of a and b square
  • (D) None of the mentioned
  • Correct Answer - Option(A)
  • Views: 16
  • Filed under category JavaScript
  • Hashtags:

Explanation by: Admin

The above code snippet contains nested function in which the function hypotenuse(a,b) has another function inside its scope, function square(x). The interesting thing about nested functions is their variable scoping rules. They can acceess the parameters and variables of the function (or functions) they are nested within.

You must be Logged in to update hint/solution

Discusssion

Login to discuss.

Be the first to start discuss.