Skip to content

Instantly share code, notes, and snippets.

@Lexhoo
Created March 9, 2019 20:42
Show Gist options
  • Save Lexhoo/448d57ca51f7439fbc5a954ea605ee5b to your computer and use it in GitHub Desktop.
Save Lexhoo/448d57ca51f7439fbc5a954ea605ee5b to your computer and use it in GitHub Desktop.
Js 1
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Hello Wilder</title>
</head>
<body>
<script src="hello-wilder.js"></script>
</body>
</html>
const Name = 'Usual Suspect';
const anneeDeSortie = '1995';
const realisateur = 'Bryan Singer';
const message = Name + ', réalisé par ' + realisateur + ', est sorti en ' + anneeDeSortie + ' et c\u2019est de la bombe !!';
alert(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment