Skip to content

Instantly share code, notes, and snippets.

@MattCrl
Created April 29, 2018 19:51
Show Gist options
  • Select an option

  • Save MattCrl/b54652a3dfd53b91f76c71696357d96a to your computer and use it in GitHub Desktop.

Select an option

Save MattCrl/b54652a3dfd53b91f76c71696357d96a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>ES6 Partie 1</title>
</head>
<body>
<h1>Ouvrez votre console :)</h1>
<script>
let city = 'Orléans';
let age = 28;
const dateOfBirth = '30/12/1989';
let sentence = `J'habite à ${city}, j'ai ${age} ans et je suis né(e) le ${dateOfBirth}.`;
console.log(sentence);
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment