My problem:
var rawData = [[two],[three],[four],[one],[two],[two],[two],[three],[four],[five],[three],[four],[five]];
Suppose I have this arrays of array from where I have to find the unique elements of an array and total count of that unique element in the array in the form of two respective arrays such as
var queslist = [one,two,three,four,five...]
var count = [countOfOne, countOfTwo, countOfThree, countOfFour, countOfFive...]
(Keep in mind the rawData is dynamic as Im getting the data from a large spreadsheet) What should be the best approach to achieve this?