We're a place where coders share, stay up-to-date and grow their careers.
Using modern syntax (arrow function, object decomposition) makes your example simpler and more readable:
const intake = meals.reduce( ({ carbs, fat, calories }, meal) => ({ carbs: carbs + meal.carbs, fat: fat + meal.fat, calories: calories + meal.calories, }), {carbs: 0, fat: 0, calories: 0} )
This is awesome! Thank you for this. Would it be ok if I update my blog and use that?
Please do. You're welcome.
Using modern syntax (arrow function, object decomposition) makes your example simpler and more readable:
This is awesome! Thank you for this. Would it be ok if I update my blog and use that?
Please do. You're welcome.