how to set the default argument for a function js code example
Example 1: javascript parameter default parameter
function say(message='Hi') {
console.log(message);
}
say();
say(undefined);
say('Hello');
function date(d = today()) {
console.log(d);
}
function today() {
return (new Date()).toLocaleDateString("en-US");
}
date();
function add(x = 1, y = x, z = x + y) {
return x + y + z;
}
console.log(add());
Example 2: ES6: Set Default Parameters for Your Functions
const resultDisplayArray = [];
for(let i = 0; i < result.failure.length; i++) {
resultDisplayArray.push(`<li class="text-warning">${result.failure[i]}</li>`);
}