_.findWhere
  • References/JavaScript/Underscore/Collection

findWhere_.findWhere(list, properties) Looks through the list and returns the first value that matches all of the key-value

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

countBy_.countBy(list, iteratee, [context]) Sorts a list into groups and returns a count for the number of objects in each group

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

flatten_.flatten(array, [shallow]) Flattens a nested array (the nesting can be to any depth). If you pass shallow,

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

isArray_.isArray(object) Returns true if object is an Array.

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

size_.size(list) Return the number of values in the list.

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

max_.max(list, [iteratee], [context]) Returns the maximum value in list. If an iteratee function is provided, it will

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

noConflict_.noConflict() Give control of the _ variable back to its previous owner. Returns a reference to the Underscore

2025-01-10 15:47:30
_.wrap
  • References/JavaScript/Underscore/Function

wrap_.wrap(function, wrapper) Wraps the first function inside of the wrapper function, passing it as the first argument

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

without_.without(array, *values) Returns a copy of the array with all instances of the values removed.

2025-01-10 15:47:30
_.throttle
  • References/JavaScript/Underscore/Function

throttle_.throttle(function, wait, [options]) Creates and returns a new, throttled version of the passed function, that, when invoked

2025-01-10 15:47:30