• JavaScript typeof, null, 和 undefined


    typeof操作符 

    可以使用typeof操作符来检测变量的数据类型。

    typeof  “John”                //返回   string

    typeof  3.14                   //返回   number

    typeof  false                  //返回   boolean

    typeof  [1,2,3,4]             //返回   object

    typeof  { name:'John',age:34}       //返回   object

    null

    在 JavaScript 中 null 表示 "什么都没有"。

    null是一个只有一个值的特殊类型。表示一个空对象引用。

    var person = null;           // 值为 null(空), 但类型为对象

    你可以设置为 undefined 来清空对象:

    undefined

    在 JavaScript 中, undefined 是一个没有设置值的变量。

    typeof 一个没有值的变量会返回 undefined

    var person = null;           // 值为 null(空), 但类型为对象

    你可以设置为 undefined 来清空对象:

    undefined 和 null 的区别

    null 和 undefined 的值相等,但类型不等:

    typeof undefined             // undefined
    typeof null                  // object
    null === undefined           // false
    null == undefined            // true
  • 相关阅读:
    linux卸载rpm包
    Centos6.3手动rpm安装gcc,c++
    阿里云服务器挂载分区
    linux下svn目录管理
    mac搭建cordova的android环境
    mac下搭建cordova开发环境
    程序员除了写代码还可以做点啥
    php之soap使用
    linux中找不到/etc/sysconfig/iptables
    const 位置不一样导致的变化
  • 原文地址:https://www.cnblogs.com/Strong-stone/p/10276637.html
Copyright © 2020-2023  润新知