Lodash - countBy 方法
语法
_.countBy(collection, [iteratee=_.identity])
通过对 collection 的每个元素运行 iteratee,创建由运行结果生成键的对象。相应键的值是 iteratee 返回该键的次数。iteratee 以一个参数调用: (value)。
参数
collection (数组 | 对象) − 要迭代的集合。
[iteratee=_.identity] (函数) − 转换键的迭代器。
输出
(对象) − 返回组合的聚合对象。
示例
var _ = require('lodash'); var list = [1.1, 2.1, 2.3] var result = _.countBy(list, Math.floor); console.log(result);
将上述程序保存在 tester.js 中。运行以下命令来执行此程序。
命令
\>node tester.js
输出
{ '1': 1, '2': 2 }
lodash_collection.htm
广告