F first(iterable: Iterable): any
Returns the first value of the input iterable.
F last(iterable: Iterable): any
Returns the last value of the input iterable.
F nth(iterable: Iterable, n: number): any
Returns the nth value of the input iterable (n is a 0-based index).
n