判断题
错误
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];。
let [foo] = null;不会报错。
判断题let [foo] = null;不会报错。