Skip to content

Instantly share code, notes, and snippets.

@jerzyyy
Created September 10, 2018 18:55
Show Gist options
  • Save jerzyyy/6599951fd4bffca5be7a33b2280280ca to your computer and use it in GitHub Desktop.
Save jerzyyy/6599951fd4bffca5be7a33b2280280ca to your computer and use it in GitHub Desktop.
js et html
const Name = 'Django';
const Producer = 'Tarantino';
const date = '2012'
const message = Name + ' réalisé par ' + Producer + ' est sorti en ' + date;
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