flatten_.flatten(array, [shallow]) Flattens a nested array (the nesting can be to any depth). If you pass shallow,
findIndex_.findIndex(array, predicate, [context]) Similar to _
min_.min(list, [iteratee], [context]) Returns the minimum value in list. If an iteratee function is provided, it will
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
throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked
memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up
uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the
noConflict_.noConflict() Give control of the _ variable back to its previous owner. Returns a reference to the Underscore
toArray_.toArray(list) Creates a real Array from the list (anything that can be iterated over). Useful for transmuting the
Page 10 of 12