Advertisement
Guest User

Untitled

a guest
Apr 25th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. /* hello-wilder.js */
  2.  
  3. // Define some variables
  4. const movieTitle = 'Harry Potter';
  5. const release = 2001;
  6. const producer = 'Chris Columbus';
  7. const description = movieTitle + ', réalisé par ' + producer + ' en ' + release + '.';
  8.  
  9. // Display a popup
  10. alert(description);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement