Author -  Sai gowtham

Setting the default parameter values for a JavaScript function

In this tutorial, 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());

default function parameters JavaScript

Second example:


function addFive(a,b=5){
    return a+b;
}

console.log(addFive(1));

Output:

6

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY