_.intersection
  • References/JavaScript/Underscore/Array

intersection_.intersection(*arrays) Computes the list of values that are the intersection of all the arrays. Each value in

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

isFunction_.isFunction(object) Returns true if object is a Function.

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

invoke_.invoke(list, methodName, *arguments) Calls the method named by methodName on each value in the list. Any extra

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

isArguments_.isArguments(object) Returns true if object is an Arguments object.

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

property_.property(key) Returns a function that will itself return the key property of any passed-in object.

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

sample_.sample(list, [n]) Produce a random sample from the list. Pass a number to return n random elements from the

2025-01-10 15:47:30