为什么以下函数返回未定义?

时间:2019-09-26 06:17:24

标签: javascript

function iqTest(numbers) {
  const split = numbers.split(" ");

  split.forEach((l, index) => {
    if (l % 2 === 0) {
      return index + 1;
    }
  })
}

这来自CodeWars问题。我认为在anon函数中似乎错过了返回值..但是为什么会这样呢?

0 个答案:

没有答案