nth()方法用于创建一个由每个n-th元素组成的新集合。
用法:
collect(array).nth(num)
参数:collect()方法采用一个参数,该参数将转换为集合,然后在其上应用nth()方法。 nth()方法保存一个数字。
返回值:此方法返回给定集合的第n个元素。
下面的示例说明了collect.js中的nth()方法:
范例1:
Javascript
const collect = require('collect.js');
let arr = [1, 2, 3, 4, 5, 6, 7, 8, 9];
const collection = collect(arr);
const nth_val = collection.nth(3);
console.log(nth_val.all());
输出:
[ 1, 4, 7 ]
范例2:
Javascript
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:98
}
];
const collection = collect(obj);
const nth_val = collection.nth(2);
console.log(nth_val.all());
输出:
[ { name:'Rahul', dob:'25-10-96', section:'A', score:98 }, { name:'Abhishek', dob:'16-08-94', section:'A', score:98 } ]
相关用法
- Lodash _.nth()用法及代码示例
- underscore.js _.nth()用法及代码示例
- jQuery :nth-of-type()用法及代码示例
- jQuery :nth-last-child()用法及代码示例
- jQuery :nth-child()用法及代码示例
- jQuery :nth-last-of-type()用法及代码示例
- Lodash _.method()用法及代码示例
- Node.js Http2ServerRequest.method用法及代码示例
- Node.js http.IncomingMessage.method用法及代码示例
- Javascript dataView.getInt16()用法及代码示例
- Javascript RegExp toString()用法及代码示例
- Node.js URLSearchParams.has()用法及代码示例
- JavaScript Math cosh()用法及代码示例
- HTML DOM isEqualNode()用法及代码示例
- JavaScript Date toLocaleTimeString()用法及代码示例
- Node.js crypto.createHash()用法及代码示例
- Node.js writeStream.clearLine()用法及代码示例
注:本文由纯净天空筛选整理自AshokJaiswal大神的英文原创作品 Collect.js nth() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。