Skip to content

下面代码的输出是什么?

Posted on:2022年1月9日 at 13:17
[
  [0, 1],
  [2, 3],
].reduce(
  (acc, cur) => {
    return acc.concat(cur);
  },
  [1, 2],
);

[1, 2]是初始值。

初始值将会作为首次调用时第一个参数 acc 的值。

原文转自:https://fe.ecool.fun/topic/e4de3d64-0a56-4bdc-b07f-d310987218e9