Skip to main content

mapRight

주어진 배열의 각 요소에 대해 오른쪽에서 왼쪽으로 순회하며 제공된 콜백 함수를 호출하고, 결과를 새로운 배열로 반환하는 함수입니다.


Code

🔗 실제 구현 코드 확인

Interface

typescript
function mapRight<T, U>(
arr: T[] | readonly T[],
callback: (currentValue: T, index: number, arr: T[] | readonly T[]) => U,
): U[];

Usage

typescript
import { mapRight } from '@modern-kit/utils';

mapRight([1, 2, 3], (item, index) => item + index);
// [5, 3, 1]