how to handle duplicate values from array in javascript code example
Example 1: count duplicates array js
uniqueCount = ["a","b","c","d","d","e","a","b","c","f","g","h","h","h","e","a"];
var count = {};
uniqueCount.forEach(function(i) { count[i] = (count[i]||0) + 1;});
console.log(count);
Example 2: javascript create array with repeated values
Array(5).fill(2)
//=> [2, 2, 2, 2, 2]