Skip to content

Instantly share code, notes, and snippets.

@angelique-w
Created September 23, 2019 08:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelique-w/66c3703e2ab41d7505771efc6b3a7a9f to your computer and use it in GitHub Desktop.
Save angelique-w/66c3703e2ab41d7505771efc6b3a7a9f to your computer and use it in GitHub Desktop.
Favorite Movie
const movieName = 'Legend';
const releaseYear = 2015;
const directorName = 'Brian Helgeland';
const message = movieName + ', réalisé par ' + directorName + ', est sorti en ' + releaseYear + '.';
alert(message);
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Favorite Movie</title>
</head>
<body>
<script src="favorite-movie.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment