Skip to content

Instantly share code, notes, and snippets.

@GuillaumeLoup
Created March 9, 2019 09:48
Show Gist options
  • Save GuillaumeLoup/124757ea43d32a10c15d914f3d6a847f to your computer and use it in GitHub Desktop.
Save GuillaumeLoup/124757ea43d32a10c15d914f3d6a847f to your computer and use it in GitHub Desktop.
// Define some variables
const movieName = "Les Affranchis";
const releaseYear = 1990;
const directorName = "Martin Scorsese"
const message = movieName + ", réalisé par " + directorName + " est sorti en " + releaseYear;
// Display a popup
alert(message);
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Hello Wilder</title>
</head>
<body>
<script src="hello-wilder.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment