javascript中typeof返回的结果有哪几种?

 我来答
蓝风紫电
2014-12-02 · TA获得超过806个赞
知道小有建树答主
回答量:785
采纳率:100%
帮助的人:541万
展开全部
typeof 运算符把类型信息当作字符串返回。typeof 返回值有六种可能: "number," "string,"
"boolean," "object," "function," 和 "undefined."

这是JS手册提供的,有些js框架则会分得更细,比如mootools
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2018-05-09
展开全部
写了代码测试了下
<script>
document.write ("typeof(1): "+typeof(1)+"<br>");
document.write ("typeof(NaN): "+typeof(NaN)+"<br>");
document.write ("typeof(Number.MIN_VALUE): "+typeof(Number.MIN_VALUE)+"<br>")
document.write ("typeof(Infinity): "+typeof(Infinity)+"<br>")
document.write ("typeof(\"123\"): "+typeof("123")+"<br>")
document.write ("typeof(true): "+typeof(true)+"<br>")
document.write ("typeof(window): "+typeof(window)+"<br>")
document.write ("typeof(document): "+typeof(document)+"<br>")
document.write ("typeof(null): "+typeof(null)+"<br>")
document.write ("typeof(eval): "+typeof(eval)+"<br>")
document.write ("typeof(Date): "+typeof(Date)+"<br>")
document.write ("typeof(sss): "+typeof(sss)+"<br>")
document.write ("typeof(undefined): "+typeof(undefined)+"<br>")
</script>
结果如下
typeof(1): number
typeof(NaN): number
typeof(Number.MIN_VALUE): number
typeof(Infinity): number
typeof("123"): string
typeof(true): boolean
typeof(window): object
typeof(document): object
typeof(null): object
typeof(eval): function
typeof(Date): function
typeof(sss): undefined
typeof(undefined): undefined
希望对你有帮助 望采纳
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
明飞兰3B
2014-12-02 · TA获得超过548个赞
知道小有建树答主
回答量:535
采纳率:55%
帮助的人:265万
展开全部
object
function
string
boolean
number
undefined
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
ourrpekj
2014-12-02
知道答主
回答量:11
采纳率:0%
帮助的人:24.1万
展开全部
"js里面的typeof有六种
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式