1. 程式人生 > >一個小程式弄懂javascript 原型(prototype) 繼承

一個小程式弄懂javascript 原型(prototype) 繼承

var op=Object.prototype

var opp=op.__proto__  // 物件原型的訪問 firefox , IE不能訪問物件的原型

alert(Object instanceof Object);

alert(typeof Object == 'function');

alert(op.constructor==Object);

alert(opp==null);

   上述程式碼打印出來的全是true ,

    說明有:

    原型鏈的終止與Oject  原型的原型

    再看下面的程式碼

var obj={};

var pt=obj.__proto__

alert(pt.__proto__==null);

   打印出來的也是true

   同理原型連終止於null