| 1234567891011 |
- const todo = ['Call with Jon', "Return Mom's trimmer", 'Get Insurance', 'Register for wcb', 'Wake up for christmas']
- // Delete the 3rd item
- todo.splice(2, 1)
- // Add a new item onto the end
- todo.push('Email Paulo')
- // Remove the first item from the list
- todo.shift()
- console.log(`You have ${todo.length} todos.`)
- console.log(todo)
|