Skip to content

Instantly share code, notes, and snippets.

@Morzanne
Created March 13, 2019 21:43
Show Gist options
  • Save Morzanne/d353b55a09a74c302c416579244beb55 to your computer and use it in GitHub Desktop.
Save Morzanne/d353b55a09a74c302c416579244beb55 to your computer and use it in GitHub Desktop.
JS first quest
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Favorite movie</title>
</head>
<body>
<script src="movie.js"></script>
</body>
</html>
const movieName = 'The Lord of The Rings';
const releaseDate = 2001;
const producer = 'Peter Jackson';
const description = movieName+' ,realised by '+producer+' ,was released in '+releaseDate;
alert(description);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment