random_.random(min, max) Returns a random integer between min and max, inclusive. If you only pass one argument, it
pluck_.pluck(list, propertyName) A convenient version of what is perhaps the most common use-case for map: extracting a list
sample_.sample(list, [n]) Produce a random sample from the list. Pass a number to return n random elements from the
propertyOf_.propertyOf(object) Inverse of _.property. Takes an object and returns a function which will return the value
invoke_.invoke(list, methodName, *arguments) Calls the method named by methodName on each value in the list. Any extra
every_.every(list, [predicate], [context]) Alias: all Returns true if all of the values
isEmpty_.isEmpty(object) Returns true if an enumerable object contains no values (no enumerable own-properties). For
union_.union(*arrays) Computes the union of the passed-in arrays: the list of unique items, in order, that are present in
isEqual_.isEqual(object, other) Performs an optimized deep comparison between the two objects, to determine if they should be considered
isMatch_.isMatch(object, properties) Tells you if the keys and values in properties are contained in object.
Page 5 of 12