2022年5月12日

【ES6】函数参数默认值

摘要: 一、对比 es6之前 function log(x, y) { y = y || 'World'; console.log(x, y); } es6 function log1(x, y = 'World') { console.log(x, y); } log('Hello', '') // He 阅读全文

posted @ 2022-05-12 14:37 smile轉角 阅读(242) 评论(0) 推荐(0) 编辑

导航