码迷,mamicode.com
首页 > Web开发 > 详细

js中typeof的使用

时间:2017-10-24 22:43:15      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:js

typeof(number,string,undefined,boolean,object)

会出现以上5种情况中的一种

console.log(typeof(‘123‘));//string
console.log(typeof(123));.//number
console.log(typeof(10.1));//number
console.log(typeof(NaN));//number
console.log(typeof(undefined));//undefined
console.log(typeof(true));//boolean
console.log(typeof([1,2,3]));//object
console.log(typeof({
  ‘username‘:‘user1‘,
  ‘say‘:function(){alert(‘hello‘)}
}));//object
console.log(typeof(document));//object
console.log(typeof(new
Object()));//object
console.log(typeof(null));//object



本文出自 “Rcid” 博客,请务必保留此出处http://13419255.blog.51cto.com/13409255/1975773

js中typeof的使用

标签:js

原文地址:http://13419255.blog.51cto.com/13409255/1975773

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!