_.nthArg

_.nthArg([n=0])

Creates a function that gets the argument at index n. If n is negative, the nth argument from the end is returned.

Since

4.0.0

Arguments

  1. [n=0] (number): The index of the argument to return.

Returns

(Function): Returns the new pass-thru function.

Example

var func = _.nthArg(1);

func('a', 'b', 'c', 'd');
// => 'b'
 

var func = _.nthArg(-2);

func('a', 'b', 'c', 'd');
// => 'c'
doc_Lodash
2016-11-27 16:39:17
Comments
Leave a Comment

Please login to continue.