Computer >> Computer tutorials >  >> Programming >> Javascript

How to set a default parameter value for a JavaScript function?


This came to handle function parameters with ease. You can easily set default parameters to allow initialization of formal parameters with default values. This is possible only if no value or undefined is passed. Let’s see an example

Live Demo

<html>
   <body>
      <script>
         // default is set to 1
         function inc(val1, inc = 1) {
            return val1 + inc;
         }
         document.write(inc(10,10));
         document.write("<br>");
         document.write(inc(10));
      </script>
   </body>
</html>