Thursday, September 4, 2025
HomeLanguagesJavascriptLodash _.dropWhile() Method

Lodash _.dropWhile() Method

Lodash is a JavaScript library that works on the top of underscore.js. Lodash helps in working with arrays, strings, objects, numbers etc.
The Loadsh.dropWhile() method is used to return the slice of the given array. This takes a predicate function that iterate through each element of the array and if the function returns false, it returned the sliced array excluding elements dropped from the beginning.

Syntax:

dropWhile(array, [predicate=_.identity])

Parameters:

  • array: It is the array that is to be sliced.
  • predicate: It is the function that either returns true or false depending on the condition given.

Return Value: It returns the new array after slicing.

Note: Please install lodash module by using command npm install lodash before using the code given below.

Example 1: 

Javascript




// Requiring the lodash library
const _ = require("lodash");
  
// Original array
let array1 = [1, 3, 4, 5, 5, 6]
  
// Using _.dropWhile() method
let newArray = _.dropWhile(array1, (e) => {
    return e != 5;
});
  
// Original Array
console.log("original Array: ", array1)
  
// Printing the newArray
console.log("new Array: ", newArray)


Output: 

Example 2: When array of object is given.

Javascript




// Requiring the lodash library
const _ = require("lodash");
  
// Original array
let array1 = [
    { "a": 1, "b": 2 }, 
    { "a": 2, "b": 1 }, 
    { "b": 2 }
]
  
// Using _.dropWhile() method
let newArray = _.dropWhile(array1, (e) => {
    return e.b == 2;
});
  
// Original Array
console.log("original Array: ", array1)
  
// Printing the newArray
console.log("new Array: ", newArray)


Output: 

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!
Previous article
Next article
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6629 POSTS0 COMMENTS
Nicole Veronica
11799 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11859 POSTS0 COMMENTS
Shaida Kate Naidoo
6749 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6698 POSTS0 COMMENTS
Umr Jansen
6717 POSTS0 COMMENTS