take()方法用于返回具有指定数量的项目的新集合。如果作为参数传递的参数为负,则从集合末尾返回元素。
用法:
collect.take()
参数:collect()方法采用一个参数,该参数将转换为集合,然后将take()方法应用于该参数。
返回值:此方法返回具有指定项目数的新集合。
模块安装:使用以下命令从项目的根目录安装collect.js模块:
npm install collect.js
以下示例说明了collect.js中的take()方法:
示例1:Filename:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Sample array
let arr = [2, 4, 5, 6, 7, 8, 9];
// Creating collection
const collection = collect(arr);
// Function call
const result = collection.take(5)
// Printing the result object
let newObject = result.all();
console.log(newObject);
使用以下命令运行index.js文件:
node index.js
输出:
[2, 4, 5, 6, 7]
示例2:Filename:index.js
Javascript
// Requiring the module
const collect = require('collect.js');
// Sample array
let arr = ['a', 'b', 'c', -3, 4, -6, 7];
// Creating collection
const collection = collect(arr);
// Function call
const result = collection.take(-3)
// Printing the result object
let newObject = result.all();
console.log(newObject);
使用以下命令运行index.js文件:
node index.js
输出:
[4, -6, 7]
相关用法
- Lodash _.take()用法及代码示例
- underscore.js _.iterators.take()用法及代码示例
- 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()用法及代码示例
- Node.js fs.link()用法及代码示例
- JavaScript Math random()用法及代码示例
- JavaScript Math round()用法及代码示例
注:本文由纯净天空筛选整理自code_hunt大神的英文原创作品 Collect.js take() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。