lodash 源码解读 _.findIndex(obj_array, fn)

Posted bbb324

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了lodash 源码解读 _.findIndex(obj_array, fn)相关的知识,希望对你有一定的参考价值。

 _.findIndex(obj_array, fn), 从对象数组中返回满足条件的第一个对象,如果没有返回-1

var users = [
    { ‘user‘: ‘barney‘,  ‘active‘: 1 },
    { ‘user‘: ‘fred‘,    ‘active‘: 1 },
    { ‘user‘: ‘pebbles‘, ‘active‘: 2 },
    { ‘user‘: ‘pebbles‘, ‘active‘: 1 }
  ];
  var s = _.findIndex(users, function(o){return o.user==‘fred‘})
  console.log(s); // 1

 

以上是关于lodash 源码解读 _.findIndex(obj_array, fn)的主要内容,如果未能解决你的问题,请参考以下文章

lodash 源码解读 _.drop(arr, num)

lodash 源码解读 _chunk(array, size)

惰性求值——lodash源码解读

RedissonDelayedQueue源码解读

HyperLedgerFabric源码解读(5)-channel

Faster RCNN源码解读(1)-NMS非极大值抑制