_.zip
  • References/JavaScript/Underscore/Array

zip_.zip(*arrays) Merges together the values of each of the arrays with the values at the corresponding position. Useful when

2025-01-10 15:47:30
_.reject
  • References/JavaScript/Underscore/Collection

reject_.reject(list, predicate, [context]) Returns the values in list without the elements that the truth test (predicate)

2025-01-10 15:47:30
_.clone
  • References/JavaScript/Underscore/Object

clone_.clone(object) Create a shallow-copied clone of the provided plain object. Any nested objects or arrays will

2025-01-10 15:47:30
_.matches
  • References/JavaScript/Underscore/Object

matcher_.matcher(attrs) Alias: matches Returns a predicate function that will tell you if a passed

2025-01-10 15:47:30
_.mixin
  • References/JavaScript/Underscore/Utility

mixin_.mixin(object) Allows you to extend Underscore with your own utility functions. Pass a hash of {name: function} definitions

2025-01-10 15:47:30
_.isNaN
  • References/JavaScript/Underscore/Object

isNaN_.isNaN(object) Returns true if object is NaN. Note: this is not the same as the native isNaN

2025-01-10 15:47:30
_.template
  • References/JavaScript/Underscore/Utility

template_.template(templateString, [settings]) Compiles JavaScript templates into functions that can be evaluated for rendering.

2025-01-10 15:47:30
_.isNull
  • References/JavaScript/Underscore/Object

isNull_.isNull(object) Returns true if the value of object is null.

2025-01-10 15:47:30
_.has
  • References/JavaScript/Underscore/Object

has_.has(object, key) Does the object contain the given key? Identical to object.hasOwnProperty(key), but uses a safe reference

2025-01-10 15:47:30
_.some
  • References/JavaScript/Underscore/Collection

some_.some(list, [predicate], [context]) Alias: any Returns true if any of the values in

2025-01-10 15:47:30