判断题
let [foo] = false;会报错。
正确
判断题 let [foo] = 1;会报错。
判断题 let [a, [b], d] = [1, [2, 3], 4];a的值为1,b的值为2,d的值为4。
判断题 let [x, y] = [1, 2, 3];x值为1,y值为2。