Nested Function In JavaScript

avatar


image.png

Image Source

Nested function, as the name implies, is the function that contains another function inside it. In JavaScript, you can nest a function inside another function. The nested function is usually referred to as the inner function and the function where another function is nested is known as outer or parent function. The nested function can access the variable/parameter and the other functions defined in the outer function whereas the outer function can't access the variable/parameter and the function defined inside the inner function. And in order to make your function work, you just need to call the outer function.

Lets suppose we want to add cube of two numbers. For this we will make use of nested function. The outer function will find the sum of cube of certain number and the nested function will just find the cube. So what I am saying here is the inner function will be responsible for finding the cube and the outer function is responsible for finding the sum of cube of those number.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Nested Function</title>
<script>
    function addCube(x, y)
    {
        function findCube(z)
        {
            return z*z*z;
        }
        return findCube(x) + findCube(y);
    }
    result = addCube(2,3);
    document.write("<h2>" + "The sum of cube of 2 and 3 is: " + result + "</h2>")
</script>
</head>
<body>
</body>
</html>

If you see the output in your browser screen, you can see the following:

image.png

Remember that the scope of nested function is within the outer or parent function and we can't access or call it outside the outer function.



0
0
0.000
0 comments