为了账号安全,请及时绑定邮箱和手机立即绑定

JavaScript typeof()

JavaScript typeof()

蝴蝶不菲 2019-07-16 09:09:15
typeof()这个函数是干什么用的?有几个参数,每个参数代表什么?
查看完整描述

3 回答

?
月关宝盒

TA贡献1772条经验 获得超5个赞

写了代码测试了下
<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>")

查看完整回答
反对 回复 2019-07-17
  • 3 回答
  • 0 关注
  • 523 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信