shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the
where_.where(list, properties) Looks through each value in the list, returning an array of all the values that contain all
sortBy_.sortBy(list, iteratee, [context]) Returns a (stably) sorted copy of list, ranked in ascending order by the results
every_.every(list, [predicate], [context]) Alias: all Returns true if all of the values
pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list
contains_.contains(list, value, [fromIndex]) Alias: includes Returns true if the value
find_.find(list, predicate, [context]) Alias: detect Looks through each value in the list
sample_.sample(list, [n]) Produce a random sample from the list. Pass a number to return n random elements from the
invoke_.invoke(list, methodName, *arguments) Calls the method named by methodName on each value in the list. Any extra
filter_.filter(list, predicate, [context]) Alias: select Looks through each value in the list
Page 1 of 3