Advertisement
MrsMcLead

JavaScript Prompt Example

Apr 1st, 2013
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // JavaScript Document
  2. var location = prompt("Where do you want to travel?");
  3.  
  4.  
  5. if (location=="")
  6.     alert("Need text!");
  7.         else
  8.     alert("That's cool! NOT. " + location + " is not a good place to travel.");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement