Skip to content

Instantly share code, notes, and snippets.

@mehdihettak
Created March 11, 2019 10:08
Show Gist options
  • Select an option

  • Save mehdihettak/454cf66baba62e653069bda1a1259932 to your computer and use it in GitHub Desktop.

Select an option

Save mehdihettak/454cf66baba62e653069bda1a1259932 to your computer and use it in GitHub Desktop.
quete JS part1 mehdi
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Testjavascript</title>
</head>
<body>
<script src = "script.js"></script>
</body>
</html>
const name = "jack";
const year = "2019"
const bestMovie = "Heat";
const createdBy = "Michael Mann";
const date ="1995"
alert(bestMovie + ", réalisé par " + createdBy + ", est sorti en " + date)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment