3

假设我有一个数组数组,如下所示:

var arrs = [
    [1, "foo", "bar", "baz"],
    [2, "bar", "baz", "qux"],
    [3, "baz", "qux", "thud"]
];

我想使用 ES6 的解构赋值将每个数组的第一个元素作为一个单独的变量,并将其余元素重新打包为另一个数组。在伪代码中:

for (let [first, *rest] of arrs) { // What is the proper way to do *rest?
    console.log(first); // Should be a number
    console.log(rest); // Should be an array of strings
}

这样的事情可能吗?

4

1 回答 1

5

这就是...

for (let [first, ... rest] of arrs) {
于 2015-06-28T17:13:14.560 回答