todo.js 220 B

123456
  1. const todo = ['Call with Jon', "Return Mom's trimmer", 'Get Insurance', 'Register for wcb', 'Wake up for christmas']
  2. console.log(`You have ${todo.length} todos.`)
  3. console.log(todo[0])
  4. console.log(todo[todo.length - 1])