unescape_.unescape(string) The opposite of escape
map_.map(list, iteratee, [context]) Alias: collect Produces a new array of values by mapping each
isNumber_.isNumber(object) Returns true if object is a Number (including NaN).
isObject_.isObject(value) Returns true if value is an Object. Note that JavaScript arrays and functions are objects
isBoolean_.isBoolean(object) Returns true if object is either true or false.
partition_.partition(array, predicate) Split array into two arrays: one whose elements all satisfy predicate and one
each_.each(list, iteratee, [context]) Alias: forEach Iterates over a list of elements, yielding
create_.create(prototype, props) Creates a new object with the given prototype, optionally attaching props as own properties
indexOf_.indexOf(array, value, [isSorted]) Returns the index at which value can be found in the array, or -1
findKey_.findKey(object, predicate, [context]) Similar to _
Page 9 of 12