标签:数组 string def 布尔 symbol 对象 nbsp instance type
typeof运算符可以判断表达式的类型,根据表达式返回七种结果:number,string,boolean,undefined,object,function,symbol
typeof的用法有两种:
1.typeof a
2.typeof(a)
对于数字来说,typeof返回number,这里数字包括整数和浮点数,一律返回number
对于字符串,typeof返回string
对于布尔值,typeof返回string
对于对象,typeof返回object,正是由于typeof运算符对于任何对象都统一返回object,因此我们无法知道某个对象是否是数组,或者说是对象的一个实例。instanceof运算符用来弥补这一缺点,比如var a=new Array();console.log(a instanceof Array);返回的是true
对于未定义的值和不存在的对象,typeof返回undefined
对于symbol,typeof返回symbol
对于函数,typeof返回function
标签:数组 string def 布尔 symbol 对象 nbsp instance type
原文地址:https://www.cnblogs.com/runhua/p/9580780.html