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

indexBy_.indexBy(list, iteratee, [context]) Given a list, and an iteratee function that returns a key for each element

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

reduce_.reduce(list, iteratee, [memo], [context]) Aliases: inject, foldl Also known as inject

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

each_.each(list, iteratee, [context]) Alias: forEach Iterates over a list of elements, yielding

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

reduceRight_.reduceRight(list, iteratee, memo, [context]) Alias: foldr The right-associative version

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

partition_.partition(array, predicate) Split array into two arrays: one whose elements all satisfy predicate and one

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

groupBy_.groupBy(list, iteratee, [context]) Splits a collection into sets, grouped by the result of running each value through iteratee

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

map_.map(list, iteratee, [context]) Alias: collect Produces a new array of values by mapping each

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