alexandrecoin
3/10/2018 - 3:36 PM

ES6.html

<!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);