0
배열이있어서 문자열 일치 수를 찾아야합니다.배열의 일치 개수 계산 Lodash
Array = ['car','road','car','ripple'];
Array.forEach(function(element) {
// Here for every element need to see how many there are in the same array.
// car = 2
//road = 1
//...
}, this);