one.html 490 B

12345678910111213141516171819202122
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=<device-width>, initial-scale=1.0">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <script>
  11. var s1 = 'a'
  12. //es6变量
  13. let s2 = 'b'
  14. //es6常量
  15. const s3 = 'c'
  16. //es6 模板字符串 ``
  17. let str = `${s1}`+'#'+ `${s3}`
  18. console.log(str)
  19. </script>
  20. </body>
  21. </html>