Hacker News new | ask | show | jobs
by thaumasiotes 1921 days ago
What was the original point?
1 comments

I think they’re only talking about JavaScript, in which case the forEach function doesn’t return anything. So you can do x.map(…).forEach(…) because map returns an array. But u can’t do x.forEach(…).map(…) Ur examples seem like they’re for a different language.