Skip to content

Delete all tasks

  1. Update the TaskService class with a new function setting the tasks to an empty array:

    task-service.ts
    deleteAllTasks() {
    this.tasks.set([]);
    }
  2. Update the TaskList class with the new function:

    deleteAllTasks() {
    this.taskService.deleteAllTasks();
    }