Guest User

Untitled

a guest
Feb 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. var greeting = "Hello ";
  2. var first_name = prompt("What's your first name?");
  3. var last_name = prompt("What's your last name?");
  4.  
  5. var reply = greeting+" "+last_name+", "+first_name;
  6. console.log("reply"); // <-- Here's the problem
Add Comment
Please, Sign In to add comment