es6新特性, 提取数组或对象中的值,按照对应位置, 为变量赋值。
let [a, b, c] = [1, 2, 3];
交换变量的值变得容易
let x = 1; let y = 2; [x, y] = [y, x];
详情 点击这里