Javascript學習筆記(14)

來源:互聯網
上載者:User

1. Javascript的數實值型別

《Javascript語言精粹》中有這樣一句話:Javascript只有單一的數字類型。

在我看來,這句話說的並不準確,應該說,Javascript在聲明時,只有單一的資料類型。或者說,Javascript的所有數實值型別都被儲存成同一種格式,就是64位的浮點數類型。

這樣說比較準確。

    <script type="text/javascript">        var i = 1.2;        alert(typeof (i));    </script>

這樣無論把i換成整數還是浮點數,都會得到Number的結果。

但是我說這樣不準確的意思是說,在Javascript還提供了一些方法來作為數值之間的類型轉換。比如:

    <script type="text/javascript">        var i = 1.2;        alert(Math.floor(i));        alert(parseInt(i));    </script>

2. Javascript沒有連接器

在我之前的C語言文章中,有一節著重介紹了連接器的作用,但是在Javascript中,是沒有連接器的,那麼多個編譯單元之間如何組合到一起呢?答案就是Javascript只是“粗魯“地將他們拋入到同一個全域的命名空間當中。

3. Javascript的預設值技巧

其實這隻是一個小技巧,相信大部分人都用過,看個簡單的小例子:

    <script type="text/javascript">        var person = { name: "kym", age: 21 };        alert(person.love || "reading");    </script>

這就是對person.love賦預設值的方法。

4. Javascript判斷自身屬性

我們知道對象其實本質上來說就是一個索引值對,那麼我們就可以用 for來遍曆 Javascript中的屬性。寫出這樣的代碼:

    <script type="text/javascript">        var person = function (name, age) {            this.name = name;            this.age = age;        };        person.prototype.Say = function () {            alert("Hi");        }        var student = function (name, age, teacher) {            person(name, age);            this.teacher = teacher;        };        student.prototype = new person(this.name,this.age);        student.prototype.SayHello = function () {            alert("Hello");        }        var s = new student("kym", 21, "sss");        for (var pro in s) {            alert(pro);        }    </script>

但是我們可以發現,其實他得到的不只只是他自身的屬性,還有原型鏈上的屬性,那麼我們就要用hasownproperty來得到:

    <script type="text/javascript">        var person = function (name, age) {            this.name = name;            this.age = age;        };        person.prototype.Say = function () {            alert("Hi");        }        var student = function (name, age, teacher) {            person(name, age);            this.teacher = teacher;        };        student.prototype = new person(this.name,this.age);        student.prototype.SayHello = function () {            alert("Hello");        }        var s = new student("kym", 21, "sss");        for (var pro in s) {            if (s.hasOwnProperty(pro)) {                alert(pro);            }        }    </script>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.