VOOZH about

URL: https://www.geeksforgeeks.org/javascript/lodash-_-takerightwhile-method/

⇱ Lodash _.takeRightWhile() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lodash _.takeRightWhile() Method

Last Updated : 2 Sep, 2024

Lodash _.takeRightWhile the method is used to create a slice of an array in which elements are taken from the end and these elements are taken until the predicate returns falsely.

Syntax:

_.takeRightWhile(array, [predicate=_.identity]);

Parameters:

  • array: This parameter holds the array to query.
  • [predicate=_.identity]: This parameter holds the function invoked per iteration.

Return Value:

  • This method is used to return the slice of the array.

Example 1: In this example, we are getting an array of objects that satisfy the given condition in a function.

Output:

[{ user: 'fred', active: false }, {user: 'pebbles', active: false}]

Example 2: In this example, we are getting an array of objects that satisfy the given condition in a function.

Output:

[{user: 'pebbles', active: false}]

Note: This code will not work in normal JavaScript because it requires the library lodash to be installed.

Comment