Be the first user to complete this post
|
Add to List |
Default function parameters
The default function parameters in ES6, gives us the ability to initialize the function arguments with default values in case if they are undefined. For example,
function mult(a, b) {
b = typeof b !== 'undefined' ? b : 1;
return a*b;
}
mult(5); // 5
It can be written as follows:
function multiply(a, b = 1) {
return a*b;
}
mult(5); // 5
Default Parameters
Also Read:
- position:fixed
- Error: can not find module 'underscore'
- Split a string in javascript when both comma and spaces are present
- Testing promise sequence using mocha, chai, chai-as-promised, sinon
- es6 iterators and iterables - creating custom iterators
- box-sizing
- Difference between async and defer attributes in script tags
- nodejs: generate uuid / guid