Skip to content

Commit 444412a

Browse files
authored
Update Count elements in an array
1 parent dcb6e6b commit 444412a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ const countMyFruits = myFruits.reduce((countFruits,fruit) => {
238238
countFruits[fruit] = ( countFruits[fruit] || 0 ) +1;
239239
return countFruits
240240
},{} )
241-
console.log(countFruits)
241+
console.log(countMyFruits)
242242
// { Apple:3, Banana:1, Mango:2, Orange:1 }
243243
244244
//seconf option

0 commit comments

Comments
 (0)