Tuesday, September 24, 2024
Google search engine
HomeLanguagesJavascriptCollect.js takeWhile() Method

Collect.js takeWhile() Method

The takeWhile() method is used to return the items in the collection until the given callback returns false. If the callback never returns false, the takeWhile() method will return all items in the collection.

Syntax:

collect.takewhile()

Parameters: The collect() method takes one argument that is converted into the collection and then takeWhile() method is applied to it.

Return Value: This method returns the items in the collection.

Module Installation: Install collect.js module using the following command from the root directory of your project:

npm install collect.js

The below example illustrates the takeWhile() method in collect.js:

Example 1: Filename: 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);


Run the index.js file using the following command:

node index.js

Output:

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

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


Run the index.js file using the following command:

node index.js

Output:

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

Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!

RELATED ARTICLES

Most Popular

Recent Comments