Creates a function that returns its nth argument.
The index of the argument to return.
Returns the new function.
var func = _.nthArg(1); func('a', 'b', 'c'); // => 'b'