1 function m1({x:0,y:0} = {}){ 2 return [x, y]; 3 } 4 5 function m2({x,y} = {x:0,y:0}){ 6 return[x, y]; 7 } 8 9 m1({x:3});//[3,0] 10 m2({x:3});//[3, undefined]
9,10行同样是输入{x:3} ,为何下面是undefined , 默认值在等式左右有影像吗?
你这个代码是什么语法?es几的