Skip to content

Instantly share code, notes, and snippets.

@clarade
Created September 23, 2019 09:45
Show Gist options
  • Save clarade/576027fcfc3b324bc4cca1464d4176d5 to your computer and use it in GitHub Desktop.
Save clarade/576027fcfc3b324bc4cca1464d4176d5 to your computer and use it in GitHub Desktop.
Working on js basics, adding some informations about our favorite movie
const movieTitle = 'Las Vegas Parano';
const realisedBy = 'Terry Gilliam';
const releaseDate = '1998';
alert('Mon film favori est ' + movieTitle + ', réalisé par ' + realisedBy + ' en ' + releaseDate +'!');
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My Favorite Movie</title>
</head>
<body>
<script src="favorite-movie.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment