Đếm có bao nhiêu items giống nhau trong một array

tipjs,object,es6

Sử dụng reduce javascript. Đếm có bao nhiêu items giống nhau trong một array

var cars = ['BMW','Benz', 'Benz', 'Tesla', 'BMW', 'Toyota'];
var carsObj = cars.reduce(function (obj, name) {
  obj[name] = obj[name] ? ++obj[name] : 1;
  return obj;
}, {});
carsObj; // => { BMW: 2, Benz: 2, Tesla: 1, Toyota: 1 }

Có thể bạn đã miss một số snippets code

kiểm tra email trong javascript

kiểm tra email trong javascript

Extend Object javascript

Extend Object javascript

Hàm lày ngày trong tuần javascript

Hàm lày ngày trong tuần javascript

How to reverse an Array?

Reversing an array in JS is really simple with the standard array method. Like below

group by property javascript use reduce

group by property javascript use reduce