首页 > Web开发 > 详细

js高级---数据类型 分类与判断

时间:2021-09-11 14:25:09      阅读:24      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>01_数据类型</title>
</head>
<body>
<!--
1. 分类(2大类)
  * 基本(值)类型
    * Number: 任意数值
    * String: 任意文本
    * Boolean: true/false
    * undefined: undefined
    * null: null
  * 对象(引用)类型
    * Object: 任意对象
    * Array: 特别的对象类型(下标/内部数据有序)
    * Function: 特别的对象类型(可执行)
2. 判断
  * typeof:
    * 可以区别: 数值, 字符串, 布尔值, undefined, function
    * 不能区别: null与对象, 一般对象与数组
  * instanceof
    * 专门用来判断对象数据的类型: Object, Array与Function
  * ===
    * 可以判断: undefined和null
-->

<script type="text/javascript">
  // typeof: 返回的是数据类型的字符串表达形式
  //1. 基本类型
  var a
  console.log(a, typeof a, a===undefined) // undefined ‘undefined‘ true
  console.log(a===typeof a) // false

  a = 3
  console.log(typeof a === number)
  a = atguigu
  console.log(typeof a === string)
  a = true
  console.log(typeof a === boolean)

  a = null
  console.log(a===null) // true
  console.log(typeof a) // ‘object‘

  console.log(--------------------------------)

  //2. 对象类型
  var b1 = {
    b2: [2, abc, console.log],
    b3: function () {
      console.log(b3())
    }
  }
  console.log(b1 instanceof Object, typeof b1) // true ‘object‘
  console.log(b1.b2 instanceof Array, typeof b1.b2) // true ‘object‘
  console.log(b1.b3 instanceof Function, typeof b1.b3) // true ‘function‘

  console.log(typeof b1.b2[2]) // ‘function‘
  console.log(b1.b2[2](abc)) // ‘abc‘ undefined
</script>

</body>
</html>

 

js高级---数据类型 分类与判断

原文:https://www.cnblogs.com/leiyanting/p/15249776.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!