跳到主要内容

countBy

_.countBy(list, iteratee, [context])
排序一个列表组成多个组,并且返回各组中的对象的数量的计数。类似 groupBy,但是不是返回列表的值,而是返回在该组中值的数目。

_.countBy([1, 2, 3, 4, 5], function(num) {
return num % 2 == 0 ? 'even': 'odd';
});
=> {odd: 3, even: 2}