mirror of
https://github.com/toss/es-toolkit.git
synced 2024-12-01 10:45:08 +03:00
589 B
589 B
at
배열에서 주어진 인덱스에 있는 요소들을 선택해서, 새 배열을 반환해요.
인터페이스
function at<T>(arr: T[], indices: number[]): T[];
파라미터
arr
(T[]
): 요소를 가져올 배열.indices
(number[]
): 요소를 가져올 인덱스.
반환 값
(T[]
): 주어진 인덱스에 있는 요소들을 가지는 새 배열.
예시
import { at } from 'es-toolkit/array';
const numbers = [10, 20, 30, 40, 50];
const result = at(numbers, [1, 3, 4]);
console.log(result); // [20, 40, 50]