js中typeof的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中typeof的使用相关的知识,希望对你有一定的参考价值。
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的使用的主要内容,如果未能解决你的问题,请参考以下文章