JavaScript基本数据类型

2018-02-06  本文已影响0人  挥剑斩浮云

Number型

字符串String

<!DOCTYPE html> 
<html lang="en">
<head>
    <title></title>
    <script type="text/javascript">
        var str1="我爱'JavaScript'";//双引号中包含单引号
        var str2='我爱"JavaScript"'; //单引号中包含双引号
        var str3="我爱\"JavaScript\"";//双引号中包含双引号
        var str4='我爱\'JavaScript\''; //单引号中包含单引号
        document.write(str1+"<br/>");
        document.write(str2+"<br/>");
        document.write(str3+"<br/>");
        document.write(str4);
    </script>
</head>
<body>
</body>
</html>

布尔型Boolean型

n= =1
<!DOCTYPE html> 
<html lang="en">
<head>
    <title></title>
    <script type="text/javascript">
        var n1=Boolean("");//空字符串,返回false
        var n2=Boolean("a");//非空字符串,返回true
        var n3=Boolean(0);//数字0,返回false
        var n4=Boolean(1);//非0数字,返回true
        var n5=Boolean(-1);// 非0数字,返回true
        var n6=Boolean(null);//数值为null,返回false
        var n7=Boolean(undefined);//数值为undefined,返回false
        var n8=Boolean(new Object());//对象,返回true
        document.write("n1值为"+n1+"<br>");
        document.write("n2值为"+n2+"<br>");
        document.write("n3值为"+n3+"<br>");
        document.write("n4值为"+n4+"<br>");
        document.write("n5值为"+n5+"<br>");
        document.write("n6值为"+n6+"<br>");
        document.write("n7值为"+n7+"<br>");
        document.write("n8值为"+n8);
    </script>
</head>
<body>
<body>
</html>

空值null型

未定义值undefined

转义字符

JavaScript常用的转义字符
上一篇下一篇

猜你喜欢

热点阅读