_.unzip
  • References/JavaScript/Underscore/Array

unzip_.unzip(array) The opposite of zip. Given an array

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

iteratee_.iteratee(value, [context]) Generates a callback that can be applied to each element in a collection. _.iteratee

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

mapObject_.mapObject(object, iteratee, [context]) Like map

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

sortBy_.sortBy(list, iteratee, [context]) Returns a (stably) sorted copy of list, ranked in ascending order by the results

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

sortedIndex_.sortedIndex(list, value, [iteratee], [context]) Uses a binary search to determine the index at which the value

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

isElement_.isElement(object) Returns true if object is a DOM element.

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

delay_.delay(function, wait, *arguments) Much like setTimeout, invokes function after wait milliseconds. If

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

last_.last(array, [n]) Returns the last element of an array. Passing n will return the last n elements of the

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

shuffle_.shuffle(list) Returns a shuffled copy of the list, using a version of the

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

keys_.keys(object) Retrieve all the names of the object's own enumerable properties.

2025-01-10 15:47:30