How can I declare optional parameters in JavaScript function?

How can I declare optional parameters in JavaScript function?

The live example link http://embed.plnkr.co/VgRD8B/

//DECLARE OPTIONAL PARAMETERS IN BELOW FUNCTION
function myFunction(i, j) {
    i = i || 0;
    j = j || 0;

   //IN THE ABOVE LINE, (i/j) WILL BE SET EITHER TO VALUE OF (i/j) OR TO DEFAULT VALUE (0).
}

For example in detail

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script>
        //DECLARE OPTIONAL PARAMETERS IN BELOW FUNCTION
        function myFunction(i, j) {
            i = i || 0;
            j = j || 0;

           alert('i : ' + i + ' j : ' + j);
           //IN THE ABOVE LINE, (i/j) WILL BE SET EITHER TO VALUE OF (i/j) OR TO DEFAULT VALUE (0).
        }

        //Calling to function.
        myFunction(2);
    </script>
</head>
<body>
    <h1>DECLARE OPTIONAL PARAMETERS FUNCTION</h1>
    <p>
        For more detail go to link
        <a href="http://www.code-sample.com/">example</a>
    </p>
</body>
</html>





ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How can I declare optional parameters in JavaScript function? How can I declare optional parameters in JavaScript function? Reviewed by Anil Singh on 9:15 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^