Skip to content
Advertisement

get a list of unique date from the stream grouping

I have data:

JavaScript

Want to get a list of dates: [“12-12-2021”, “13-12-2021”]

Using stream, I can get a map:

JavaScript

I would like to convert to list in from the stream above.

Advertisement

Answer

groupingBy is not the best choice in your case. Use distinct instead. It will automatically filter out all duplicates.

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