Advertisement
Guest User

Untitled

a guest
Feb 9th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. var userName = prompt('What is your name?');
  2. console.log(userName);
  3.  
  4. alert("Hello there, " + userName);
  5. console.log(userName + ' was a man who thought he was a loner');
  6.  
  7. var questionOne = prompt('The NFL team at the bottom comes in?');
  8. console.log('But he knew it wouldn\'t ' + questionOne);
  9.  
  10. alert('Yes it comes in ' + questionOne);
  11.  
  12. var homeTown = prompt('What are you from?');
  13. console.log(userName + ' left his home in ' + homeTown + ', Arizona');
  14.  
  15. var whatState = prompt('What state is Los Angeles in?');
  16. console.log('For some ' + whatState + ' grass');
  17.  
  18. var whyAreYou = prompt('Why are you here?');
  19. console.log(whyAreYou);
  20.  
  21. alert('Too bad! Get back home!');
  22. console.log('Get back, get back. Get back to where you once belonged');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement