Skip to content

Instantly share code, notes, and snippets.

@justinehell
Created June 5, 2020 08:32
Show Gist options
  • Save justinehell/010bee5529700f9d250ad6cc50670ad3 to your computer and use it in GitHub Desktop.
Save justinehell/010bee5529700f9d250ad6cc50670ad3 to your computer and use it in GitHub Desktop.
Variation sur le 1er programme
const movieName = 'Forrest Gump';
const releaseDate = '1994';
const director = 'Robert Zemeckis';
const message = movieName + ', réalisé par ' + director + ', est sorti en ' + releaseDate;
alert(message);
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>My favorite movie</title>
</head>
<body>
<script src="favoriteMovie.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment