美文网首页
学习js第一天

学习js第一天

作者: 蜉蝣_fe74 | 来源:发表于2019-02-20 09:32 被阅读0次

    1.JS特点:

        解释性脚本语言

        运行在浏览器(浏览器内核带有js解释器,Chrome v8引擎)

        弱类型语言(松散型)

        事件驱动(动态)

        跨平台的脚本语言

    2.JS书写位置:

        内部js:<script>  document.write("hello world")  </script>      内部引入:<script src="path:to/index.js"></script>

        外部js: index.js文件   document.write("hello world");

         注意:

              1. script标签可以放在页面任何位置

              2.下面这样写是错误的!!!

                    <script src="path:to/index.js">  

                          document.write("hello world")  

                    </script>

    3.怎样直观地区分不同的数据类型那?

         一个关键字 (typeof)

         3.1    typeof返回有六种值: number、string、boolean、undefined、object(数组也是对象)、function

       3.2    js有五种基本数据类型:number、string、boolean、undefined、null、symbol

       3.3    两种引用类型:object、function

       3.4    两种特殊数据类型: null、undefined

    4.显式转换

          parseInt()、parseFloat()、Number()、toString()、String()

          toFixed()保留几位小数之后数据类型变为字符串

    5.四舍五入

        5.1    Math.round(21.65) == 22  不保留小数位四舍五入

       5.2     var a=25.546544;   console.log(a.toFixed(3))   可随意保留小数位

    相关文章

      网友评论

          本文标题:学习js第一天

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