js-mentorship-sasha / javascript

17 stars 5 forks source link

Build a todo list #380

Closed odv closed 4 years ago

odv commented 4 years ago

User stories

Deobp commented 4 years ago

let todoList = ['we love JS'];

Deobp commented 4 years ago

console.log(todoList);

Deobp commented 4 years ago
todoList.push('buy boat');
todoList.push('party on boat');
Deobp commented 4 years ago
todoList[0] = 'practice JS';
Deobp commented 4 years ago
// delete first element of todoList
todoList.slice(0,1);