Content<aside> 💡
Resource<aside> 💡
From Lesson 57 ⇒ 78
</aside>
https://www.youtube.com/watch?v=GM6dQBmc-Xg&list=PLDoPjvoNmBAx3kiplQR_oeDqLDBUDYwVv
Assignmentconst tasks = [
{
title: "Do laundry",
completed: true,
priority: "medium",
},
{
title: "Study JavaScript",
completed: false,
priority: "high",
},
{
title: "Buy groceries",
completed: false,
priority: "low",
},
{
title: "Go to the gym",
completed: false,
priority: "medium",
},
];
<aside> 💡
reduce method on the original tasks array to group tasks by their priority."low", "medium", and "high", where each key’s value is the count of tasks with that priority.Example:
{ low: 1, medium: 2, high:1 }
</aside>Assignment<aside> 💡
Solve assignments from lesson 57 ⇒ 78
</aside>
https://elzero.org/study/javascript-bootcamp-2021-study-plan/