Javascript 面試題隨筆

來源:互聯網
上載者:User

複製代碼 代碼如下:
var Fundamental = {count:1};
function Test(){}
Test.prototype = Fundamental;
Test.prototype.increase = function(){this.count++;};
var test = new Test();
console.log(test.count);
var test2 = new Test();
console.log(test2.count);
test.increase();
//test.count和test2.count的值各是多少

前天去面試遇到的一道題,面試的問題大概是當test.increase被調用時,test和test2的count值分別是多少
首先,回答這道題有可能把這種情況與另一種類似的情況相混淆:
假如把代碼改成:
複製代碼 代碼如下:
function FundamentalModified(){
var count = 1;
this.increase = function(){
count++;
}
this.show = function(){
return count;
}
}
function TestModified(){}
TestModified.prototype = new FundamentalModified();
var test3 = new TestModified();
var test4 = new TestModified();
test3.increase();
//test3.show()和test4.show()各是多少

假如問題改成這樣,那就簡單的多了。但是兩個問題並不會得到相同的結果。
==========================================分割一下
回到面試題中,其實面試題的答案是2和1。原因呢:test.count是test的屬性,而且test2.count其實是test2.__proto__的屬性:

當test.increase()被調用時,JS執行了this.count++ ==> 返回this.count; this.count = this.count + 1;

this.count = this.count + 1;

這句在看似簡單的語句其實有著不同尋常的意味~~

這句話的意思其實是,給執行個體建立一個屬性,這個屬性被賦予this.count + 1的值。

而this.count 其實是在原型鏈中的count,也就是這個this.count++其實在第一次執行的時候表現為:

this.count = Test.Prototype.count + 1;

可以用hasOwnProperty來驗證一下:

當var test = new Test()時。test.hasOwnProperty("count")  === false
test.increase()後。 test.hasOwnProperty("count")  === true
總的來說,JS還是一個很好玩的語言。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.