_.methods
  • References/JavaScript/Underscore/Object

functions_.functions(object) Alias: methods Returns a sorted list of the names of every method

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

once_.once(function) Creates a version of the function that can only be called one time. Repeated calls to the modified function

2025-01-10 15:47:30
_.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