nth() function
指定された Iterable/AsyncIterable の n 番目の要素を返します。
Signature:
typescript
declare function nth(index: number, iterable: readonly []): undefined;Example
ts
nth(2, [1, 2, 3, 4]); // 3
nth(5, [1, 2, 3, 4]); // undefined
nth(2, ["name", "gender", "age"]); // 'age'
nth(3, ["name", "gender", "age"]); // undefined
nth(2, "abcdefg"); // 'c'
nth(10, "abcdefg"); // undefined