15_symbol.html 510 B

123456789101112131415161718192021
  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. /* 独一无二的 不和其他的进行冲突 */
  13. // var a = Symbol('me')
  14. let a = Symbol('school')
  15. let b = Symbol('school')
  16. console.log(a,b)
  17. </script>
  18. </body>
  19. </html>