#16: π Add Items Using the Service
Adding an item
addItem(item): void {
this.todoList.push(item);
}addItem(title): void {
this.todoListService.addItem({ title });
}Last updated
addItem(item): void {
this.todoList.push(item);
}addItem(title): void {
this.todoListService.addItem({ title });
}Last updated