九州下载 - 系统安卓苹果手机游戏推荐下载网站!

当前位置:九州下载 > 建站问答 >

js中typeof操作符是什么

时间:2023-02-26 09:38编辑:九州下载来源:www.wzjsgs.com

1、typeof操作符返回字符串,表示未计算操作数的类型。

2、typeof一般用来检验简单的数据类型,返回的基本类型用字符串表示,而复杂的数据类型中function返回的是Function,其他的都返回Object,其中null特殊,表示一个空对象。

实例

typeof1//'number'
typeof'1'//'string'
typeofundefined//'undefined'
typeoftrue//'boolean'
typeofSymbol()//'symbol'
typeofnull//'object'
typeof[]//'object'
typeof{}//'object'
typeofconsole//'object'
typeoffunction(){}//'function'

以上就是js中typeof操作符的介绍,希望对大家有所帮助。

相关文章