Answers for "object.entries reduce"

2

forming an object with reduce

const FRUITS = ["banana", "apple", "orange", "banana", "orange",
"apple", "apple", "orange", "orange", "banana", "orange", "banana"];

const total = FRUITS.reduce((map, fruit) => ({
  ...map,
  [fruit]: (map[fruit] || 0) + 1,
}), {});
console.log(total); // { banana: 4, apple: 3, orange: 5}
Posted by: Guest on March-12-2021
0

object.entries reduce

.as-console-wrapper {  max-height: 100% !important;  top: 0;}
Posted by: Guest on June-25-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language