Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. var todo=[];
  2. var answer=prompt("what do you want to do?");
  3. while (answer!=="quit") {
  4. if (answer=="list") {
  5. console.log(todo);
  6. }
  7. else if (answer="new") {
  8. var newtodo=prompt("what do you want to add?");
  9. todo.push(newtodo);
  10.  
  11.  
  12. }
  13. }
  14. alert("ok we're done here");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement