Skip to content

Instantly share code, notes, and snippets.

@onurinanc
Created September 13, 2021 16:59
Show Gist options
  • Select an option

  • Save onurinanc/7923a8dffcc0bf09c6f8007c301c450d to your computer and use it in GitHub Desktop.

Select an option

Save onurinanc/7923a8dffcc0bf09c6f8007c301c450d to your computer and use it in GitHub Desktop.
const apples = ['green', 'red', 'red', 'yellow', 'red', 'yellow', 'green', 'green'];
var appleMap = apples.reduce((prev, apple) => {
if (prev[apple] >= 1) prev[apple]++;
else prev[apple] = 1;
return prev;
}, {});
console.log(appleMap);
// result: {green: 3, red: 3, yellow: 2}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment