首页 > 代码库 > 数据类型【js】
数据类型【js】
javascript的数据类型:
Number String Boolean undefined 共4种。
类型的总结:
所有的数值都是number类型
字符和字符串都是string类型
布尔是boolean类型
如果一个变量没有初始化值的时候,其类型为undefined类型。表示没有定义。
typeof 可以查看变量的数据类型。
使用格式:
typeof 变量名 或者 typeof(变量名)
案例代码:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>javascript数据类型</title>
<script type="text/javascript">
/*
javascript的数据类型:
number string boolean undefined 共4种。
类型的总结:
所有的数值都是number类型
字符和字符串都是string类型
布尔是boolean类型
如果一个变量没有初始化值的时候,其类型为undefined类型。表示没有定义。
typeof 可以查看变量的数据类型。
使用格式:
typeof 变量名
*/
document.write("10数据类型是:" + (typeof 10) + "<br/>");
document.write("9.99数据类型是:" + (typeof 9.99) + "<br/>");
document.write("‘a‘数据类型是:" + (typeof ‘a‘) + "<br/>");
document.write("‘abc‘数据类型是:" + (typeof ‘abc‘) + "<br/>");
document.write("\"abcdef\"数据类型是:" + (typeof "abcdef") + "<br/>");
document.write("true数据类型是:" + (typeof true) + "<br/>");
document.write("a数据类型是:" + (typeof a) + "<br/>");
</script>
</head>
<body>
</body>
</html>
结果如下:
来自为知笔记(Wiz)
数据类型【js】
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。