last()方法用于从集合中返回满足给定真值测试的最后一个元素。
用法:
collect(array).last(callback)
参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用last()方法。 last()方法保留回调函数。
返回值:此方法返回集合中满足给定真值测试的最后一个元素。
下面的示例说明了collect.js中的last()方法:
范例1:
const collect = require('collect.js');
const collection = collect([10, 20, 30, 40, 50]);
const last_val = collection.last(element => element / 10);
console.log(last_val);
输出:
50
范例2:
const collect = require('collect.js');
let obj = [
{
name:'Rahul',
dob:'25-10-96',
section:'A',
score:98,
},
{
name:'Aditya',
dob:'25-10-96',
section:'B',
score:96,
},
{
name:'Abhishek',
dob:'16-08-94',
section:'A',
score:80
},
{
name:'Rahul',
dob:'19-08-96',
section:'B',
score:77,
},
];
const collection = collect(obj);
const last_val = collection.last(
element => element.name == 'Rahul');
console.log(last_val);
输出:
{ name:'Rahul', dob:'19-08-96', section:'B', score:77 }
相关用法
- Lodash _.last()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- JQuery last()用法及代码示例
- jQuery :last用法及代码示例
- underscore.js _.last()用法及代码示例
- CSS text-align-last用法及代码示例
- PHP Ds\Vector last()用法及代码示例
- PHP Ds\Set last()用法及代码示例
- PHP Ds\Deque last()用法及代码示例
- jQuery :last-of-type用法及代码示例
- jQuery :nth-last-child()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js last() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。