_.map(collection, Function) => newCollection
_.filter(collection, Predicate) => newCollection
_.some(collection, Predicate) => true or false
_.reduce(collection, BiFunction, seed) => accumulated value
ParameterMeaningCollectionAn iterable group of elements. This can be an arra...