Guest User

Untitled

a guest
Mar 22nd, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>ES6</title>
  5. </head>
  6. <body>
  7. <script type="text/javascript">
  8.  
  9. let city = "Paris"
  10. let age = 21
  11. const dateOfBirth = "11 janvier 1997"
  12.  
  13. let phrase = `J'habite à ${city}, j'ai ${age} ans et je suis né(e) le ${dateOfBirth}`
  14.  
  15. console.log(phrase)
  16. </script>
  17. </body>
  18. </html>
Add Comment
Please, Sign In to add comment