You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using forEach to push items onto a new array is almost always equivalent to using a map.
data.map(job=>({title: job.title,
...
}))
The only case where it's not equivalent is if there's conditional logic in the body of the forEach callback which results in fewer or more elements in the new array than the original (in this case you can use reduce instead).
The text was updated successfully, but these errors were encountered:
jeth/src/logic.js
Lines 4 to 18 in 55aa475
Using
forEach
topush
items onto a new array is almost always equivalent to using amap
.The only case where it's not equivalent is if there's conditional logic in the body of the
forEach
callback which results in fewer or more elements in the new array than the original (in this case you can usereduce
instead).The text was updated successfully, but these errors were encountered: