📜  Collect.js takeWhile() 方法

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

Collect.js takeWhile() 方法

takeWhile() 方法用于返回集合中的项目,直到给定的回调返回 false。如果回调从不返回 false,则 takeWhile() 方法将返回集合中的所有项目。

句法:

collect.takewhile()

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

返回值:此方法返回集合中的项目。

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

npm install collect.js

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

示例 1:文件名:index.js

Javascript
// Requiring the module
const collect = require('collect.js'); 
    
// Sample array
let arr = [1, 2, 3, 4, 5, 6, 8, 9]; 
    
// Creating collection
const collection = collect(arr); 
  
// Function call
const result = collection
    .takeWhile(item => item < 8);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);


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
    .takeWhile(item => item != 11);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);


使用以下命令运行index.js文件:

node index.js

输出:

[1, 2, 3, 4, 5, 6]

示例 2:文件名: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
    .takeWhile(item => item != 11);
  
// Printing the result object
let newObject = result.all();
console.log(newObject);

使用以下命令运行index.js文件:

node index.js

输出:

[2, 4, 5, 6, 7, 8, 9]