Lodash _.countBy() 方法
_.countBy 方法创建一个对象,该对象由通过 iteratee 运行集合的每个元素的结果生成的键组成。每个key对应的值就是iteratee返回key的次数。
句法:
_.countBy(collection, [iteratee=_.identity])
参数:此方法接受上面提到的两个参数,如下所述:
- 集合(数组|对象):此参数保存要迭代的集合。
- [iteratee=_.identity] (函数):此参数保存迭代器以转换键。
返回值:该方法用于返回组合的聚合对象。
示例一:这里使用 const _ = require('lodash') 来导入文件中的 lodash 库。
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = ([6.1, 4.2, 6.3, 5, 7.9, 5.3, 5.1, 7.3 ]);
// Use of _.countBy() method
let y = _.countBy(obj1, Math.floor);
// Printing the output
console.log(y);
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = (['one', 'two', 'three', 'five', 'eleven', 'twelve'] );
// Use of _.countBy()
// method
// The `_.property` iteratee shorthand.
let y = _.countBy(obj1, 'length');
// Printing the output
console.log(y);
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = (['tee', 'cee', 'dee', 'bee', 'eee' ]);
var obj2 = (['q', 'r', 's', 'p' ]);
// Use of _.countBy() method
// The `_.property` iteratee shorthand.
let x = _.countBy(obj1, 'length');
let y = _.countBy(obj2, 'length');
// Printing the output
console.log(x);
console.log(y);
输出:
{ '4': 1, '5': 3, '6': 2, '7':2 }
示例 2:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = (['one', 'two', 'three', 'five', 'eleven', 'twelve'] );
// Use of _.countBy()
// method
// The `_.property` iteratee shorthand.
let y = _.countBy(obj1, 'length');
// Printing the output
console.log(y);
输出:
{ '3': 2, '4': 1, '5': 1, '6':2 }
示例 3:
javascript
// Requiring the lodash library
const _ = require("lodash");
// Original array
var obj1 = (['tee', 'cee', 'dee', 'bee', 'eee' ]);
var obj2 = (['q', 'r', 's', 'p' ]);
// Use of _.countBy() method
// The `_.property` iteratee shorthand.
let x = _.countBy(obj1, 'length');
let y = _.countBy(obj2, 'length');
// Printing the output
console.log(x);
console.log(y);
输出:
{ '3': 5 }
{ '1': 4 }
注意:此代码在普通 JavaScript 中不起作用,因为它需要安装库 lodash。