笛卡尔积

计算两个数组的笛卡尔积。

  • 使用Array.prototype.reduce()Array.prototype.map()和展开运算符(...)从两个数组生成所有可能的元素对。
const cartesianProduct = (a, b) =>
  a.reduce((p, x) => [...p, ...b.map(y => [x, y])], []);

cartesianProduct(['x', 'y'], [1, 2]);
// [['x', 1], ['x', 2], ['y', 1], ['y', 2]]