VOOZH about

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

⇱ Lodash _.unionBy() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Lodash _.unionBy() Method

Last Updated : 2 Sep, 2024

Lodash _.unionBy() method accepts iteratee which is invoked for each element of each array to generate the criterion by which uniqueness is computed. The order of result values is determined from the first array in which the value occurs.

Syntax:

_.unionBy(array, [iteratee = _.identity]);

Parameters:

  • array: This parameter holds the array to inspect.
  • [iteratee = _.identity]: This parameter holds the iteratee invoked per element.

Return Value:

  • This method is used to return the new array of combined values.

Example 1: In this example, we are combining multiple arrays of objects by using the _unionBy() method.

Output:

[ { 'y': 1 }, { 'y': 2 }, {'y': 3} ]

Example 2: In this example, we are combining multiple arrays by using the _unionBy() method.

Output:

[1.5, 2.6, 3.8]
Comment