Day.02.14 js的变量类型

作者: 挂树上的骷髅怪 | 来源:发表于2017-02-14 21:09 被阅读11次
    <!DOCTYPE html>
    <html>
     <head>
     <meta  charset="utf-8">
      <title> js的变量类型 </title>
     </head>
        <script type="text/javascript">
            var aaa = "hello dema";
                window.alert (typeof(aaa));
            aaa = 666;
             window.alert (typeof(aaa));
        </script>
     <body>
     </body>
    </html>
    

    小结:
    1.typeof(变量名称) 可以查询变量类型
    2.js是的类型不是固定的,可以变化,跟ios里面有区别;

    js1.png js2.png

    相关文章

      网友评论

        本文标题:Day.02.14 js的变量类型

        本文链接:https://www.haomeiwen.com/subject/fkdfwttx.html