2.1 基本类型 number,string,boolean

  1. var num =10; number
  2. var str ="hello world"; string
  3. var b = false; boolean

image.png

2.2 怎么看是什么数据类型 —>使用typeof

  1. <script>
  2. // number,string,boolean 三种数据类型
  3. var num =10;
  4. var str ="hello world";
  5. var b = true;
  6. console.log(typeof num);
  7. console.log(typeof str);
  8. console.log(typeof b);
  9. </script>

image.png