zip_.zip(*arrays) Merges together the values of each of the arrays with the values at the corresponding position. Useful when
reject_.reject(list, predicate, [context]) Returns the values in list without the elements that the truth test (predicate)
clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will
matcher_.matcher(attrs) Alias: matches Returns a predicate function that will tell you if a passed
mixin_.mixin(object) Allows you to extend Underscore with your own utility functions. Pass a hash of {name: function} definitions
isNaN_.isNaN(object) Returns true if object is NaN. Note: this is not the same as the native isNaN
template_.template(templateString, [settings]) Compiles JavaScript templates into functions that can be evaluated for rendering.
isNull_.isNull(object) Returns true if the value of object is null.
has_.has(object, key) Does the object contain the given key? Identical to object.hasOwnProperty(key), but uses a safe reference
some_.some(list, [predicate], [context]) Alias: any Returns true if any of the values in
Page 7 of 12