获取数组中符合条件的值的个数

前端之家收集整理的这篇文章主要介绍了获取数组中符合条件的值的个数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
countBy_.countBy(list,iteratee,[context]) 
Sorts a list into groups and returns a count for the number of objects in each group. Similar to groupBy,but instead of returning a list of values,returns a count for the number of values in that group.

_.countBy([1,2,3,4,5],function(num) {
  return num % 2 == 0 ? 'even': 'odd';
});
=> {odd: 3,even: 2}


引用地址:http://underscorejs.org/#countBy

自己例子:

const ck = _.countBy(this.handlingUnitMaterials,function (hu) {
      return hu.checked == true ? 'ischecked' : 'nochecked';
    });
返回的ck就是一个对象。自己打印看看即可 原文链接:https://www.f2er.com/angularjs/145562.html

猜你在找的Angularjs相关文章