Delete all tasks
Delete all tasks
Section titled “Delete all tasks”Instructions
Section titled “Instructions”-
Update the
TaskService
class with a new function setting the tasks to an empty array:task-service.ts deleteAllTasks() {this.tasks.set([]);} -
Update the
TaskList
class with the new function:deleteAllTasks() {this.taskService.deleteAllTasks();}