modern-agile-team / modern-kit

@modern-kit은 클라이언트 개발에 유용한 모듈들을 제공하는 오픈소스 라이브러리 입니다.
https://modern-agile-team.github.io/modern-kit/
MIT License
44 stars 8 forks source link

[Feature]: forEachRight #298

Open ssi02014 opened 2 days ago

ssi02014 commented 2 days ago

Package Scope


Overview

기존 forEach와 다르게 오른쪽에서 부터 순회하면서 callback을 호출하는 함수입니다.

forEachRight([1, 2, 3], (el, index) => {
  console.log(el, index);
});
/* 
  3 2
  2 1
  1 0
*/