Y
Hacker News
new
|
ask
|
show
|
jobs
by
guilherme-puida
1076 days ago
Sure, but `forEach` is not even in the same category as map/filter/reduce. `forEach` is in no way functional.
1 comments
nullcipher
1075 days ago
I mean just search for "is forEach functional programming"
link
guilherme-puida
1073 days ago
forEach is just an alternate syntax for a for..in loop, that instead of being a block it takes a closure. It's not functional, since it's only used for side-effects.
link