数组的叉积

通过从两个数组中创建每个可能的配对来创建一个新的数组。

  • 使用 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']]