Skip to content

Instantly share code, notes, and snippets.

@stephanBerger
Last active September 21, 2019 13:40
Show Gist options
  • Select an option

  • Save stephanBerger/ffcd32591d4280a0880742058a262385 to your computer and use it in GitHub Desktop.

Select an option

Save stephanBerger/ffcd32591d4280a0880742058a262385 to your computer and use it in GitHub Desktop.
Javascript-1
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Javascript-1</title>
<script src="script.js"></script>
</head>
<body>
<main>
</main>
</body>
</html>
const titleMovie = 'Pulp Fiction';
let yearRelease = 1994;
const movieDirector ='Quentin Tarantino';
const message = 'Le film ' + titleMovie + ' est sorti en ' + yearRelease + ', le realisateur est: ' + movieDirector;
alert(message);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment