var a = {}; var b = function() {}; var c = []; //在瀏覽器中執行 //印出Object {} a.__proto__ //印出function Empty(){} b.__proto__ //印出Object {} b.__proto__.__proto__ //印出[] c.__proto__ //印出Object {} c.__proto__.__proto__
Last updated 4 years ago
Was this helpful?