Default Parameters

 function sum(a,b=3){

    return a+b;
}

function add(a=4,b){
    return a+b;
}

function mul(b,a=9){
    return a*b;
}
console.log(sum(3));
console.log(add(3));
console.log(mul(3));


Comments

Popular posts from this blog

Callback Hell

TODO list with DOM

Refactoring callback hell code