VOOZH about

URL: https://www.geeksforgeeks.org/javascript/collect-js-unlessnotempty-function/

⇱ Collect.js unlessNotEmpty() Function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Collect.js unlessNotEmpty() Function

Last Updated : 23 Jul, 2025

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 

 
 

Run the index.js file using the following command:


 

node index.js

Output:


 

[ 1 ]

Example 2: Filename-index.js 


 

 
 

Run the index.js file using the following command:


 

node index.js

Output:


 

[ 1, 2, 3]


 

Reference: https://collect.js.org/api/unlessnotempty


 

Comment