Skip to content
Advertisement

count of unique data in one column of list of lists

I have got list of lists, have to count number of unique values in one of the columns from that list. I have got only to the point to extract that one column from the list by using the following

JavaScript

how can I now count unique data in that column?

Advertisement

Answer

Use set to find unique elements

JavaScript

OR

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