Skip to content
Advertisement

How to get distinct elements(case insensitive) from array of objects using lodash

I have an array that looks something like below,

JavaScript

now I need only one Microsoft, instead of these case combinations using lodash.

expected output,

JavaScript

can anyone help me out with this? found many solution, but i need the case insensitive filter.

thanks in advance.

Advertisement

Answer

You can use lodash’s _.uniqBy(), which accepts a function that generates the matching criteria. In this case trim the string, and convert it to lower case:

JavaScript
JavaScript

Since you want the last item in a series of duplicates, you can reverse the array, get the unique items, and then reverse it back:

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement