Friday, September 19, 2025
HomeLanguagesJavascriptCollect.js unlessNotEmpty() Function

Collect.js unlessNotEmpty() Function

Collect.js is a fluent and convenient wrapper for working with arrays and objects. The unlessNotEmpty() function executes the callback function when the collection is empty. 

Installation: Install the Collect.js module using the following command:

npm install --save collect.js

Syntax:  

collection.unlessNotEmpty(callback)

Parameters: This function takes only one parameter i.e. the callback function which executes if the collection is empty.

Return Value: This function returns the new collection object.

Example 1: Filename-index.js 

Javascript




// Requiring module
const collect = require('collect.js')
 
// User defined collection
var myCollection = []
 
// Creating collection object
const collection = collect(myCollection);
 
// Callback execution since collection object is empty
collection.unlessNotEmpty(item => item.push(1));
 
// Printing collection
console.log(collection.all());


 
 

Run the index.js file using the following command:

 

node index.js

Output:

 

[ 1 ]

Example 2: Filename-index.js 

 

Javascript




// Requiring module
const collect = require('collect.js')
 
// User defined collection
var myCollection = [1, 2, 3]
 
// Creating collection object
const collection = collect(myCollection);
 
// No callback execution since
// collection is not empty
collection.unlessNotEmpty((item) => {
  item.push(4)
  item.push(5)
});
 
// Printing collection
console.log(collection.all());


 
 

Run the index.js file using the following command:

 

node index.js

Output:

 

[ 1, 2, 3]

 

Reference: https://collect.js.org/api/unlessNotEmpty.html

 

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

Dominic
32301 POSTS0 COMMENTS
Milvus
84 POSTS0 COMMENTS
Nango Kala
6666 POSTS0 COMMENTS
Nicole Veronica
11840 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11898 POSTS0 COMMENTS
Shaida Kate Naidoo
6781 POSTS0 COMMENTS
Ted Musemwa
7056 POSTS0 COMMENTS
Thapelo Manthata
6739 POSTS0 COMMENTS
Umr Jansen
6744 POSTS0 COMMENTS