Underscore.js 集合 countBy 方法

返回 Underscore.js 处理集合


语法

_.countBy(list, iteratee, [context])

countBy() 方法获取按提供的 iteratee 方法返回的值分组的拆分列表计数。

示例

var _ = require('underscore');

var list = [{"title": "Learn Java", "Author": "Sam", "Cost": 200},
   {"title": "Learn Scala", "Author": "Sam", "Cost": 200},
   {"title": "Learn C", "Author": "Julie", "Cost": 200} ]

//示例 1. 调用 countBy 方法来按照 Author 写的书的数量
var result = _.countBy(list, 'Author');
console.log(result);

//示例 2. 调用 countBy 方法来统计 Cost 相同的书的数量
result = _.countBy(list, 'Cost')
console.log(result)

上面示例运行结果如下

Underscore.js 集合 countBy 方法运行结果


返回 Underscore.js 处理集合

查看笔记

扫码一下
查看教程更方便