_.extendOwn
  • References/JavaScript/Underscore/Object

extendOwn_.extendOwn(destination, *sources) Alias: assign Like extend, but only copies own

2025-01-10 15:47:30
_.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
_.isMatch
  • References/JavaScript/Underscore/Object

isMatch_.isMatch(object, properties) Tells you if the keys and values in properties are contained in object.

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

uniqueId_.uniqueId([prefix]) Generate a globally-unique id for client-side models or DOM elements that need one. If prefix

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

isRegExp_.isRegExp(object) Returns true if object is a RegExp.

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

filter_.filter(list, predicate, [context]) Alias: select Looks through each value in the list

2025-01-10 15:47:30
_.tail
  • References/JavaScript/Underscore/Array

rest_.rest(array, [index]) Alias: tail, drop Returns the rest of the elements in an array

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

isEqual_.isEqual(object, other) Performs an optimized deep comparison between the two objects, to determine if they should be considered

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
_.constant
  • References/JavaScript/Underscore/Utility

constant_.constant(value) Creates a function that returns the same value that is used as the argument of _.constant.

2025-01-10 15:47:30