Creates a function that gets the argument at index n. If n is negative, the nth argument from the end is returned.
n
The index of the argument to return.
Returns the new pass-thru function.
Gets the element at index n of array. If n is negative, the nth element from the end is returned.
array
The array to query.
The index of the element to return.
Returns the nth element of array.
5.7.0
const array = ['a', 'b', 'c', 'd']nth(array, 1)// => 'b'nth(array, -2)// => 'c' Copy
const array = ['a', 'b', 'c', 'd']nth(array, 1)// => 'b'nth(array, -2)// => 'c'
5.10.0
const func = nthArg(1)func('a', 'b', 'c', 'd')// => 'b'const func = nthArg(-2)func('a', 'b', 'c', 'd')// => 'c' Copy
const func = nthArg(1)func('a', 'b', 'c', 'd')// => 'b'const func = nthArg(-2)func('a', 'b', 'c', 'd')// => 'c'
Creates a function that gets the argument at index
n
. Ifn
is negative, the nth argument from the end is returned.