将生成器转换为数组
将生成器函数的输出转换为数组。
- 使用扩展运算符(
...
)将生成器函数的输出转换为数组。
const generatorToArray = gen => [...gen];
const s = new Set([1, 2, 1, 3, 1, 4]);
generatorToArray(s.entries()); // [[ 1, 1 ], [ 2, 2 ], [ 3, 3 ], [ 4, 4 ]]
将生成器函数的输出转换为数组。
...
)将生成器函数的输出转换为数组。const generatorToArray = gen => [...gen];
const s = new Set([1, 2, 1, 3, 1, 4]);
generatorToArray(s.entries()); // [[ 1, 1 ], [ 2, 2 ], [ 3, 3 ], [ 4, 4 ]]