# lodash countBy
创建一个组成对象,key 是经过迭代函数执行处理集合中每个元素后返回的结果。
概要
_.countBy(collection, [iteratee=_.identity])
创建一个组成对象,key
(键)是经过 iteratee
(迭代函数) 执行处理 collection
中每个元素后返回的结果,每个 key
(键)对应的值是 iteratee
(迭代函数)返回该 key
(键)的次数(注:迭代次数)。 iteratee
调用一个参数:(value)。
添加版本
0.5.0
参数
collection (Array|Object)
: 一个用来迭代的集合。[iteratee=_.identity] (Array|Function|Object|string)
: 一个迭代函数,用来转换key(键)。
返回 (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 }