<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Movie</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="main.js"></script>
</head>
<body>
</body>
</html>
/* hello-wilder.js */
// Define some variables
const movie = 'The social network';
let year = '2010';
const realisator = 'David Fincher';
const message = movie + ', réalisé par ' + realisator + ', est sorti en ' + 2010 ;
// Display a popup
alert(message);