Hi!
About Lodash's forEach
function, and Lodash in general…
I told you that it "abstracts away from you the chore (and complexity) of looping", so that you can focus on what really matters for your application: the collection you want to iterate through, and the piece of logic you wish to be applied for each item.
You use forEach
like this:
// You first define "the collection you want to iterate through":