标签: javascript
function iqTest(numbers) { const split = numbers.split(" "); split.forEach((l, index) => { if (l % 2 === 0) { return index + 1; } }) }
这来自CodeWars问题。我认为在anon函数中似乎错过了返回值..但是为什么会这样呢?