默认函数参数 ES6 Parameterized 函数 ES6 默认函数参数 默认函数参数 function add(a, b = 1) { return a+b; } console.log(add(4)) ES6 Parameterized 函数 ES6 默认函数参数