Guest User

Untitled

a guest
Mar 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.  
  4. <body>
  5.  
  6. <script>
  7.  
  8. const city = prompt ("Où habites-tu ?")
  9. //console.log (city)
  10.  
  11. const age = prompt ("Quel est ton âge ?")
  12. //console.log (age)
  13.  
  14. const dateOfBirth = prompt ("Quel est ta date de naissance ?")
  15. //console.log (dateOfBirth)
  16.  
  17. const sentence = `J\'habite à ${city} , j\'ai ${age} ans et je suis née en ${dateOfBirth}`
  18.  
  19.  
  20. console.log (sentence)
  21.  
  22. </script>
  23.  
  24. </body>
  25.  
  26. </html>
Add Comment
Please, Sign In to add comment