Last active
November 1, 2019 18:28
-
-
Save krez69/6053a97ef83478e098d143bec5865abb to your computer and use it in GitHub Desktop.
quete 1 JS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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