2019-07-02
描述
使用提供的两个数组进行组合后产生一个新的数组。
提示
- 使用
Array.prototype.reduce()
,Array.prototype.map()
和Array.prototype.concat()
从两个数组中获取每一种可能的配对 - 存储配对结果
代码
const xProd = (a, b) => a.reduce((acc, x) => acc.concat(b.map(y => [x, y])), []);
示例
获取两个数组中的组合:
xProd([1, 2], ['a', 'b']); // [[1, 'a'], [1, 'b'], [2, 'a'], [2, 'b']]