Having trouble not getting the way to achieve the following with the array. I intend to reduce the array to unique values, although, getting the total count for each of the unique elements. For instance, get a final array like:
var data = [14:"A",5:"IMG",2:"SPAN"]
which corresponds to the total of items in each unique tag, associated with the tag itself. My original sample array is the following:
var data = ["A", "A","A","IMG","IMG","A","A","IMG","A","A","IMG","A","A","IMG","IMG","A","A","A","A","A","SPAN","SPAN"]
You cannot get
because that is not valid JavaScript. Also, if the count would end up being similar for different tags, you would get duplicate keys. Turn the key/values around, and use JavaScript object:
In Ecmascript 5:
jsFiddle here
If you need to support browsers without "reduce", you can find reduce in underscore.js
jsFiddle with underscore here