摘要: es5中默认参数写法与es6中默认参数写法 es6之前采用变通方法 function f(x, y, z) { y=y||7; z=z||42; return x + y + z; } console.log(f(1)); //50 console.log(f(1,"",0)); //50 存在问题 阅读全文
posted @ 2020-08-31 09:35 青幽草 阅读(2171) 评论(0) 推荐(0) 编辑