<!DOCTYPE html>
<html lang="en">
<head>
<title>ES6.js</title>
<!-- Required meta tags -->
<meta charset="utf-8">
</head>
<body>
<script src="ES6.js"></script>
</body>
let city = "Paris";
let age = 28;
const dateOfBirth = "25/06/1989";
let message = `J\'habite à ${city}, j\'ai ${age} ans et je suis né le ${dateOfBirth}.`;
console.log(message);