_.nth

_.nth(array, [n=0]) source npm package Gets the element at index n of array. If n is negative, the nth element from the end is returned. Since 4.11.0 Arguments array (Array): The array to query. [n=0] (number): The index of the element to return. Returns (*): Returns the nth element of array. Example var array = ['a', 'b', 'c', 'd'];   _.nth(array, 1); // => 'b'   _.nth(array, -2); // => 'c';

_.now

_.now() source npm package Gets the timestamp of the number of milliseconds that have elapsed since the Unix epoch (1 January 1970 00:00:00 UTC). Since 2.4.0 Returns (number): Returns the timestamp. Example _.defer(function(stamp) {   console.log(_.now() - stamp); }, _.now()); // => Logs the number of milliseconds it took for the deferred invocation.

_.noop

_.noop() source npm package This method returns undefined. Since 2.3.0 Example _.times(2, _.noop); // => [undefined, undefined]

_.noConflict

_.noConflict() source npm package Reverts the _ variable to its previous value and returns a reference to the lodash function. Since 0.1.0 Returns (Function): Returns the lodash function. Example var lodash = _.noConflict();

_.negate

_.negate(predicate) source npm package Creates a function that negates the result of the predicate func. The func predicate is invoked with the this binding and arguments of the created function. Since 3.0.0 Arguments predicate (Function): The predicate to negate. Returns (Function): Returns the new negated function. Example function isEven(n) {   return n % 2 == 0; }   _.filter([1, 2, 3, 4, 5, 6], _.negate(isEven)); // => [1, 3, 5]

_.multiply

_.multiply(multiplier, multiplicand) source npm package Multiply two numbers. Since 4.7.0 Arguments multiplier (number): The first number in a multiplication. multiplicand (number): The second number in a multiplication. Returns (number): Returns the product. Example _.multiply(6, 4); // => 24

_.mixin

_.mixin([object=lodash], source, [options={}]) source npm package Adds all own enumerable string keyed function properties of a source object to the destination object. If object is a function, then methods are added to its prototype as well.Note: Use _.runInContext to create a pristine lodash function to avoid conflicts caused by modifying the original. Since 0.1.0 Arguments [object=lodash] (Function|Object): The destination object. source (Object): The object of functions to add. [option

_.minBy

_.minBy(array, [iteratee=_.identity]) source npm package This method is like _.min except that it accepts iteratee which is invoked for each element in array to generate the criterion by which the value is ranked. The iteratee is invoked with one argument: (value). Since 4.0.0 Arguments array (Array): The array to iterate over. [iteratee=_.identity] (Function): The iteratee invoked per element. Returns (*): Returns the minimum value. Example var objects = [{ 'n': 1 }, { 'n': 2 }];   _.min

_.min

_.min(array) source npm package Computes the minimum value of array. If array is empty or falsey, undefined is returned. Since 0.1.0 Arguments array (Array): The array to iterate over. Returns (*): Returns the minimum value. Example _.min([4, 2, 8, 6]); // => 2   _.min([]); // => undefined

_.methodOf

_.methodOf(object, [args]) source npm package The opposite of _.method; this method creates a function that invokes the method at a given path of object. Any additional arguments are provided to the invoked method. Since 3.7.0 Arguments object (Object): The object to query. [args] (...*): The arguments to invoke the method with. Returns (Function): Returns the new invoker function. Example var array = _.times(3, _.constant),     object = { 'a': array, 'b': array, 'c': array };   _.map(['