函數參數的擴展 參數的預設值 // ES6之前,方法不能為參數直接指定預設值,只能通過參數判定的方式,為參數設置預設值。 function testFunc(x, y) { y = y || 'ES6'; console.log(x, y); } testFunc('Welcome to'); // ...
函數參數的擴展
參數的預設值
// ES6之前,方法不能為參數直接指定預設值,只能通過參數判定的方式,為參數設置預設值。 function testFunc(x, y) { y = y || 'ES6'; console.log(x, y); } testFunc('Welcome to'); // Welcome to ES6 testFunc('Welcome to', 'China'); // Welcome to China testFunc('Welcome to', ''); // Welcome to ES6