Resolved! How to find the count of duplicated array values and list it in key-value pair object.
Hi, How to find the count of duplicated array values and list it in key-value pair object. for example : having array of {a,b,a,c,b,a} the result would be [{"group":"a","score":"3"},{"group":"b","score":"2"},{"group":"c","score":"1"}] Can anyone he...
