function,

everyNth

FreeVue FreeVue Follow Mar 30, 2019 · 1 min read
everyNth
Share this

everyNth. 배열의 모든 n 번째 요소를 반환합니다.

Array.filter()를 사용하여 지정된 배열의 모든 n 번째 요소를 포함하는 새 배열을 반듭니다.

const everyNth = (arr, nth) => arr.filter((e, i) => i % nth === nth - 1)

// 예시
everyNth([1, 2, 3, 4, 5, 6], 2) // [ 2, 4, 6 ]

[출처: http://30.surge.sh/]