当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Lodash _.findLast()用法及代码示例


Lodash是一个JavaScript库,可在underscore.js顶部使用。 Lodash帮助处理数组,集合,字符串,对象,数字等。

_.findLast()方法从右到左遍历集合中的元素。它与_.find()方法几乎相同。

用法:

_.findLast( collection, predicate, fromIndex )

参数:此方法接受上述和以下所述的三个参数:

  • collection:方法是对其进行迭代的集合。
  • predicate:每次迭代都会调用该函数。
  • fromIndex:它是从搜索开始的数组的索引。

返回值:此方法返回匹配的元素,否则未定义。



范例1:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var users = ([3, 4, 5, 6]); 
  
// Using the _.findLast() method 
let found_elem = _.findLast(users, function(n) { 
  return n % 2 == 1; 
}); 
  
// Printing the output  
console.log(found_elem);

输出:

5

范例2:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var user1 = ([3, 4, 5, 6, 9, 1, 7]); 
var user2 = ([24, 14, 55, 36, 76]); 
  
// Using the _.findLast() method 
let found_elem = _.findLast(user1, function(n) { 
  return n % 2 == 0; 
}); 
let found_elem2 = _.findLast(user2, function(n) { 
  return n % 2 == 1; 
}); 
  
// Printing the output  
console.log(found_elem); 
console.log(found_elem2);

输出:

6
55

范例3:

// Requiring the lodash library  
const _ = require("lodash");  
      
// Original array  
var user1 = ([3.5, 4.7, 5.8, 6.9, 9.4, 1.3, 7.2]); 
  
// Using the _.findLast() method 
let found_elem = _.findLast(user1, function(n) { 
  return n % 2 == 1; 
}); 
  
// Printing the output  
console.log(found_elem);

输出:

undefined




相关用法


注:本文由纯净天空筛选整理自shivanisinghss2110大神的英文原创作品 Lodash _.findLast() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。