如何查看javaScript中变量的类型
4个回答
2015-09-14 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
关注
展开全部
typeof 运算符返回一个用来表示表达式的数据类型的字符串。
可能的字符串有:"number"、"string"、"boolean"、"object"、"function" 和 "undefined"。
表达式 返回值
typeof undefined 'undefined'
typeof null 'object'
typeof true 'boolean'
typeof 123 'number'
typeof "abc" 'string'
typeof function() {} 'function'
typeof {} 'object'
typeof [] 'object'
typeof unknownVariable 'undefined'
例如:
<script type="text/javascript">
var a = 12;
//alert(typeof a); //number
a = "asdf";
//alert(typeof a); //string
a = true;
//alert(typeof a); //boolean
a = function() {
alert("adfasdf");
};
//alert(typeof a); //function
a = document;
//alert(typeof a); //object
var b;
alert(typeof b); //undefined
</script>
展开全部
使用typeof可以获得变量的类型,例如下面的代码:
x=123;
document.write(typeof(x));
会输出:
number
x=123;
document.write(typeof(x));
会输出:
number
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-09-14 · 知道合伙人互联网行家
关注
展开全部
typeof 运算符
typeof(变量名称)
typeof(变量名称)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
typeof 变量名 ==='类型'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询