Advertisement
Asomar

JS Découverte du langage

Sep 23rd, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="fr">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Hello Wilder</title>
  6. </head>
  7. <body>
  8.     <script src="hello-wilders.js"></script>
  9. </body>
  10. </html>
  11.  
  12.  
  13.  
  14. //Define some variables
  15. const movie = 'Inglorious Bastards';
  16. const year = '2009';
  17. const director = 'Quentin Tarantino';
  18. const message = movie + ', réalisé par ' + director + ', est sorti en ' + year + '.';
  19.  
  20. //Display popup
  21. alert(message);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement