Skip to content

Instantly share code, notes, and snippets.

@rafagarcia
Last active September 11, 2018 16:52
Show Gist options
  • Save rafagarcia/89e3edbe92715e45cc6d6789afc2d298 to your computer and use it in GitHub Desktop.
Save rafagarcia/89e3edbe92715e45cc6d6789afc2d298 to your computer and use it in GitHub Desktop.
JS Bin// source http://jsbin.com/jumexok
var cars = ['BMW','Benz', 'Benz', 'Tesla', 'BMW', 'Toyota'];
var carsObj = cars.reduce(function (obj, name) {
obj[name] = obj[name] ? ++obj[name] : 1;
return obj;
}, {});
console.log(carsObj);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment