📜  Collect.js take() 方法

📅  最后修改于: 2022-05-13 01:56:29.730000             🧑  作者: Mango

Collect.js take() 方法

take() 方法用于返回具有指定项目数的新集合。如果作为参数传递的参数为负,则它返回集合末尾的元素。

句法:

collect.take()

参数: collect() 方法采用一个参数,该参数转换为集合,然后将 take() 方法应用于它。

返回值:此方法返回具有指定项目数的新集合。

模块安装:使用以下命令从项目的根目录安装collect.js模块:

npm install collect.js

下面的例子说明了 collect.js 中的 take() 方法:

示例 1:文件名: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);


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

输出:

[2, 4, 5, 6, 7]

示例 2:文件名: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]