_.initial
  • References/JavaScript/Underscore/Array

initial_.initial(array, [n]) Returns everything but the last entry of the array. Especially useful on the arguments object. Pass

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

indexOf_.indexOf(array, value, [isSorted]) Returns the index at which value can be found in the array, or -1

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
_.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
_.pairs
  • References/JavaScript/Underscore/Object

pairs_.pairs(object) Convert an object into a list of [key, value] pairs.

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

isString_.isString(object) Returns true if object is a String.

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
_.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