服务器

Array

Collection

Date

Function

Lang

Math

Number

Object

Seq

String

Util

Properties

Methods

_.countBy(collection, iteratee=_.identity)

创建一个由运行集合中的每个元素到迭代器的结果生成的键组成的对象。每个键的相应值是密钥返回的次数iteratee。迭代器调用一个参数:(value)

初始

0.5.0

参数
  1. collection (Array | Object):迭代的集合。
  2. [iteratee=_.identity] (Function):用于转换密钥的迭代器。
返回

(Object):返回组合的聚合对象。

_.countBy([6.1, 4.2, 6.3], Math.floor);
// => { '4': 1, '6': 2 }
 
// The `_.property` iteratee shorthand.
_.countBy(['one', 'two', 'three'], 'length');
// => { '3': 2, '5': 1 }