_.value
  • References/JavaScript/Underscore/Chaining

value_.chain(obj).value() Extracts the value of a wrapped object.

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

allKeys_.allKeys(object) Retrieve all the names of object's own and inherited properties.

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

values_.values(object) Return all of the values of the object's own properties.

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
_.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
_.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
_.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
_.unzip
  • References/JavaScript/Underscore/Array

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

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