Skip to main content

forEachRight

주어진 배열의 각 요소에 대해 오른쪽에서 왼쪽으로 순회하며 제공된 콜백 함수를 호출합니다.


Code

🔗 실제 구현 코드 확인

Benchmark

  • hz: 초당 작업 수
  • mean: 평균 응답 시간(ms)
이름hzmean성능
modern-kit/forEachRight10,607,063.510.3479fastest
lodash/forEachRight5,715,281.603.4568slowest
  • modern-kit/forEachRight
    • 1.86x faster than lodash/forEachRight

Interface

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

Usage

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

const items = ['apple', 'banana', 'cherry'];

forEachRight(items, (item, index, arr) => {
console.log(`Index ${index}: ${item}`);
});
/*
Index 2: cherry
Index 1: banana
Index 0: apple
*/