3_数据类型.html 579 B

1234567891011121314151617181920212223242526272829303132
  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. //基本数据类型 number string boolean null undefined
  12. var a = 123;
  13. b = a
  14. console.log(b)
  15. // console.log(c)
  16. c = 22
  17. console.log(d)
  18. var d = 30
  19. var k = 123
  20. k = '小明'
  21. console.log(k)
  22. k = true
  23. console.log(k)
  24. k = undefined
  25. console.log(k)
  26. </script>
  27. </body>
  28. </html>