手记

javascript

function T () {};
var ttt = new T();
ttt.__proto__ === T.prototype
T.__proto__ === Function.prototype
Function.prototype.__proto__ === Object.prototype
Object.prototype.__proto__ === null
T.prototype.constructor === T
ttt instanceof T
Function instanceof Function // true
Function instanceof Object // true
Object instanceof Function // true
Object instanceof Object // true

function T () {};
var ttt = new T();
ttt.__proto__ === T.prototype
T.__proto__ === Function.prototype
Function.prototype.__proto__ === Object.prototype
Object.prototype.__proto__ === null
T.prototype.constructor === T
ttt instanceof T
Function instanceof Function // true
Function instanceof Object // true
Object instanceof Function // true
Object instanceof Object // true


1人推荐
随时随地看视频
慕课网APP