Skip to content

Instantly share code, notes, and snippets.

@krez69
Last active November 1, 2019 18:28
Show Gist options
  • Save krez69/6053a97ef83478e098d143bec5865abb to your computer and use it in GitHub Desktop.
Save krez69/6053a97ef83478e098d143bec5865abb to your computer and use it in GitHub Desktop.
quete 1 JS
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>JS</title>
</head>
<body>
<script type="text/javascript" src="script.js"></script>
</body>
</html>
const name = 'Forest gump ';
const year = 'est sorti en 1994 ';
const director = 'réalisé par Robert Zemeckis ';
alert(name + year + director + 'vraiment cool !!');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment