_.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
_.findIndex
  • References/JavaScript/Underscore/Array

findIndex_.findIndex(array, predicate, [context]) Similar to _

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

min_.min(list, [iteratee], [context]) Returns the minimum value in list. If an iteratee function is provided, it will

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

memoize_.memoize(function, [hashFunction]) Memoizes a given function by caching the computed result. Useful for speeding up

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

uniq_.uniq(array, [isSorted], [iteratee]) Alias: unique Produces a duplicate-free version of the

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
_.toArray
  • References/JavaScript/Underscore/Collection

toArray_.toArray(list) Creates a real Array from the list (anything that can be iterated over). Useful for transmuting the

2025-01-10 15:47:30