ES6 函数参数的解构赋值

function add([x, y]){
  return x + y;
}

add([1, 2]); // 3

 

 

posted @ 2019-04-09 17:42  随★风  阅读(294)  评论(0编辑  收藏  举报