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