findWhere_.findWhere(list, properties) Looks through the list and returns the first value that matches all of the key-value
countBy_.countBy(list, iteratee, [context]) Sorts a list into groups and returns a count for the number of objects in each group
flatten_.flatten(array, [shallow]) Flattens a nested array (the nesting can be to any depth). If you pass shallow,
isArray_.isArray(object) Returns true if object is an Array.
size_.size(list) Return the number of values in the list.
max_.max(list, [iteratee], [context]) Returns the maximum value in list. If an iteratee function is provided, it will
noConflict_.noConflict() Give control of the _ variable back to its previous owner. Returns a reference to the Underscore
wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument
without_.without(array, *values) Returns a copy of the array with all instances of the values removed.
throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked
Page 10 of 12