const countBy = (arr, fn) =>
arr.map(typeof fn === 'function' ? fn : val => val[fn]).reduce((acc, val) => {
acc[val] = (acc[val] || 0) + 1;
return acc;
}, {});
countBy([6.1, 4.2, 6.3], Math.floor); // {4: 1, 6: 2}
countBy(['one', 'two', 'three'], 'length'); // {3: 2, 5: 1}
'Dev. Web > 자주 쓰는 스크립트 모음' 카테고리의 다른 글
mapObject - 배열 -> map (0) | 2019.06.16 |
---|---|
join - 배열 구분자 (0) | 2019.06.16 |
isSorted - 배열 정렬 확인 (0) | 2019.06.14 |
intersection - 배열 교집합 (0) | 2019.06.14 |
forEachRight - 반복해서 콜백 처리 (0) | 2019.06.14 |