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