Setting the default parameter values for a JavaScript function

Setting the default parameter values for a JavaScript function

In this post we will give you information about Setting the default parameter values for a JavaScript function. Hear we will give you detail about Setting the default parameter values for a JavaScript functionAnd how to use it also give you demo for it if it is necessary.

we are going to learn about how to set default parameter values to a function in JavaScript.

Default function parameters are introduced in es6, which help us to initialize the parameter with a default value.

Note: In JavaScript, if we don’t pass any value to function parameters, it will be initialized with a value undefined.

Setting the default parameter values

We can set the default parameter values to a function at the time of declaring it.

Here is an example, that adds the default value to a name parameter:

function enterYourname(name="Unknown"){    return 'User name is '+ name}console.log(enterYourname());

Second example:

function addFive(a<span>,b=5){    return a+b;}console.log(addFive(1));

Output:

6

Hope this code and post will helped you for implement Setting the default parameter values for a JavaScript function. if you need any help or any feedback give it in comment section or you have good idea about this post you can give it comment section. Your comment will help us for help you more and improve us. we will give you this type of more interesting post in featured also so, For more interesting post and code Keep reading our blogs

For More Info See :: laravel And github

We're accepting well-written guest posts and this is a great opportunity to collaborate : Contact US