Js的typeof和Js的基本数据类型

十度 javaScript 2016年03月12日 收藏

本文将从以下几个方面介绍Js的typeof和Js的基本数据类型:

  • ** Js的typeof的用法
  • ** Js的基本数据类型
  • ** 使用基本类型使用typeof的返回结果

** Js的typeof的用法 **

typeof 运算符

返回一个用来表示表达式的数据类型的字符串。

typeof[()expression[]] ;

expression 参数是需要查找类型信息的任意表达式。

说明

typeof 运算符把类型信息当作字符串返回。typeof 返回值有六种可能:

"number," "string," "boolean," "object," "function," 和 "undefined."

typeof 语法中的圆括号是可选项。

** Js的基本数据类型 **

Js的数据类型有七种:对象、字符串、数组、数字、布尔、null、undefined

** 使用基本类型使用typeof的返回结果 **

将Js的基本数据类型与typeof的返回结果进行对比,你会发现,只有两种基本数据类型
在typeof中没有体现出来,这个基本类型是 ** NULL 和 数组 **
那么NULL在typeof中的返回结果是什么?是Object!

//x为对象
typeof(x) === "object"
//x为字符串
typeof(x) === "string"
//x为数组
typeof(x) === "object"
//x为数字
typeof(x) === "number"
//x为布尔值
typeof(x) === "boolean"
//x为null
typeof(null) === "object"
//x未定义
typeof(x) ===  "undefined"
//x为函数
typeof(x) === "function"

那么如何判断一个变量是否不为空,即不为null或者undefined呢?

//在js的if条件中 表达式为 null/undefined/0/NaN是均为false
var notNull = function(temp)
{
    if(typeof(temp)!="undefined" && temp !== 0 && temp)
        return false;
    return true;
}

If there're any problems,please tell me~,thanks.