码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript数据类型

时间:2019-12-21 15:26:22      阅读:97      评论:0      收藏:0      [点我收藏+]

标签:ring   ==   基本类型   数值   null   array   function   形式   instance   

一、JavaScript数据类型分为2大类

1. 基本类型(也就是值类型)

   var a; // undefined: undefined
   a = null; // null: null
   a = 123; // Number: 任意数值
   a = "abc"; // String: 任意文本
   a = true; // Boolean: true/false

2. 对象(引用)类型

   // Object: 任意对象
   // Array: 特别的对象类型(下标/内部数据有序)
   // Function: 特别的对象类型(可执行)
   var b = {
    b1 : [2, 'abc', console.log],
    b2 : function () {
             console.log('b3()')
         }
    }

二、JavaScript数据类型的判断

1. typeof:返回的是数据类型的字符串表达形式

   /* 
      可以区别: 数值, 字符串, 布尔值, undefined, function
      不能区别: null与对象, 一般对象与数组
   */
   var a;
   console.log(a, typeof a, a===undefined); // undefined 'undefined' true
   // type a的值为"undefined"
   console.log(a===typeof a); // false

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

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

   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'

2. instanceof:专门用来判断对象数据的类型: Object, Array与Function

3. ===:可以判断: undefined和null

三、undefined与null的区别

   // undefined代表定义未赋值
   // null代表定义并赋值了, 只是值为null

四、什么时候给变量赋值为null呢?

   var a = null //a将指向一个对象, 但对象此时还没有确定
   // 初始赋值,表明将要赋值给对象
   a = null //让a指向的对象成为垃圾对象
   // 结束前,让对象成为垃圾对象,(被垃圾回收器回收)

五、严格区别变量类型与数据类型?

/*
  * js的变量本身是没有类型的, 变量的类型实际上是变量内存中数据的类型
  * 变量类型:
    * 基本类型: 保存基本类型数据的变量
    * 引用类型: 保存对象地址值的变量
  * 数据类型:
    * 基本类型
    * 对象类型
*/

JavaScript数据类型

标签:ring   ==   基本类型   数值   null   array   function   形式   instance   

原文地址:https://www.cnblogs.com/quxingzhou/p/12076954.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!