zoukankan      html  css  js  c++  java
  • JavaScript中的null和undefined

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
    <title>null undefined</title>
    </head>
    <body>
    <script type="text/javascript">
            //<![CDATA[


            var a;
            var b = null;


            document.write( a + "<br/>" );  //因为a未定义具体是值,所以是undefined
            document.write( b + "<br/>" );


            document.write( undefined == true );
            document.write( "<br/>" );
            document.write( undefined == "" );
            document.write( "<br/>" );
            document.write( undefined == 0 );
            document.write( "<br/>" );
            document.write( undefined == -0 );
            document.write( "<br/>" );
            document.write( undefined == NaN );
            document.write( "<br/>" );
            document.write( undefined == null ); //在某些时候他们两个比较是相等的
            document.write( "<br/>" );
            document.write( 1985 === "1985" );


            //]]>
        </script>
    </body>
    </html>
    Meet so Meet. C plusplus I-PLUS....
  • 相关阅读:
    SDWebImage
    ios面试题
    IOS推送功能push
    NSString什么时候用copy,什么时候用strong
    OC点语法和变量作用域
    iOS 常用几种数据存储方式
    JSON与XML的区别比较
    IOS开发——网络编程OC篇&Socket编程
    IOS-UI控件大全
    使用sql语句备份一张表
  • 原文地址:https://www.cnblogs.com/iplus/p/4490026.html
Copyright © 2011-2022 走看看