Closed odv closed 4 years ago
let todoList = ['we love JS'];
console.log(todoList);
todoList.push('buy boat');
todoList.push('party on boat');
todoList[0] = 'practice JS';
// delete first element of todoList
todoList.slice(0,1);
User stories
[x] Store todo items
[x] Display todo items
[x] Add new todo items
[x] Change todo items
[x] Delete todo items