js的数据类型

<html>
<head>

<title>HTML示例</title>
<style type="text/css">


</style>

</head>

<body>
<script type="text/javascript">
//定义一个字符串
var str = "abc";
// alert(str);
//定义数字
var num = 123;
// alert(num);

var flag = true;
// alert(flag);
var date = new Date();
alert(date);

</script>

</body>

</html>

posted @ 2020-09-26 17:04  一玎  阅读(101)  评论(0)    收藏  举报