非ES6写法 function fn1(num){ var num = num || 1 ;//num有实参则为实参,没有为1 } ES6写法 function fn2 (num = 1){ //效果同上 //code }