Guest User

Untitled

a guest
Dec 14th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. # To-Do List Lab
  2.  
  3. The To-Do List app needs to allow a user to create a list of task items. Using the start point, complete the empty functions.
  4.  
  5. ## MVP
  6. The items should be persisted as an array of strings, saved to local storage. On load, the app should first display any data that is already saved in local storage.
  7.  
  8. When a user enters a new To-Do item, the app should:
  9. - append the new item to the html list
  10. - save the new item to local storage
  11.  
  12. HINT: Tackle this by first implementing the handleButtonClick function, then addItem, then save and then populate.
Add Comment
Please, Sign In to add comment