//es6 functionfn(a=10,b){ console.log(a,b) } // before es6 functionfn(a, b) { a = a || 10; console.log(a, b) }
本文标题:设置参数的默认值
本文链接:https://www.haomeiwen.com/subject/uuxxxqtx.html
网友评论