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

isFinite_.isFinite(object) Returns true if object is a finite Number.

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

defer_.defer(function, *arguments) Defers invoking the function until the current call stack has cleared, similar to using

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

times_.times(n, iteratee, [context]) Invokes the given iteratee function n times. Each invocation of iteratee is called

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

where_.where(list, properties) Looks through each value in the list, returning an array of all the values that contain all

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

bind_.bind(function, object, *arguments) Bind a function to an object, meaning that whenever the function is called

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

first_.first(array, [n]) Alias: head, take Returns the first element of an array

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