欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

ECMAScript 中typeof的用法实例

程序员文章站 2022-04-05 12:00:43
...
本篇文章分享给大家的内容是关于ECMAScript 中typeof的用法实例,内容很详细,接下来我们就来看看具体的内容,希望可以帮助到有需要的朋友。

typeof 返回变量的类型字符串值 、其中包括 “object”、“number”、“string”、“undefined”、“boolean”、

1、在变量只声明、却不初始化值 Or 在变量没有声明时 返回 “undefined”

> > 'undefined'

> typeof e
'undefined'
>

2、所有引用对象,返回”object“

>  a = > 'object'
>  b =  String("str"> 'object'
>  c =  Boolean(> 'object'
>
> var d = []
undefined
> typeof d
'object'
>
> var e = {}
undefined
> typeof e
'object'
>

3、根据变量值返回对应类型 “string”、“number”、“boolean”

> var a = 98undefined> typeof a'number'
> var b = 'aaa'undefined> typeof b'string'
> var c = trueundefined> typeof c'boolean'
>

相关推荐:

JavaScript学习中常会遇到的js事件处理程序

对Element UI table组件的源码的详细分析

以上就是ECMAScript 中typeof的用法实例的详细内容,更多请关注其它相关文章!

相关标签: ECMAScript