_.mapObject
  • References/JavaScript/Underscore/Object

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

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
_.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
_.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
_.bindAll
  • References/JavaScript/Underscore/Function

bindAll_.bindAll(object, *methodNames) Binds a number of methods on the object, specified by methodNames, to be run

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

omit_.omit(object, *keys) Return a copy of the object, filtered to omit the blacklisted keys (or array of keys). Alternatively

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