ES6的默认参数是在函数参数列表中为参数提供默认值的一种方式。当调用函数时,如果没有传递该参数的值,那么将使用默认值。这有助于简化代码并提高可读性。
示例:
function greet(name = 'World') {
console.log('Hello, ' + name + '!');
}
greet(); // 输出 "Hello, World!"
greet('Alice'); // 输出 "Hello, Alice!"
ES6的默认参数是在函数参数列表中为参数提供默认值的一种方式。当调用函数时,如果没有传递该参数的值,那么将使用默认值。这有助于简化代码并提高可读性。
示例:
function greet(name = 'World') {
console.log('Hello, ' + name + '!');
}
greet(); // 输出 "Hello, World!"
greet('Alice'); // 输出 "Hello, Alice!"