判断题
let [x, y] = [1, 2, 3];x值为1,y值为2。
正确
判断题 let [bar, foo] = [1];foo的值为1。
判断题 let [foo] = [];foo的值为undefined。
判断题 let a = 1;let b = 2;let c = 3;可以写成let [a, b, c] = [1, 2, 3];。