The _.each function accepts an array or an object, an iteratee function and an optional context object, the iteratee function is invoked once and in order for each array item
The iteratee function provides 3 arguments
item - The current iterated object (or value if an object was passed)
i - The i...