Created
March 16, 2020 08:49
-
-
Save lebowvsky/05614f54ca06135836b81685e01ade98 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 filmTitle = 'C\'est arrivé près de chez vous '; | |
const year= 1992; | |
const movieDirector = ' Remy Belvaux'; | |
alert(filmTitle + year + movieDirector); |
This file contains hidden or 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>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