问答详情
源自:8-2 再谈原型链

为什么我的 chrome 运行的结果,跟老师不一样啊?

56fc91600001597005000338.jpg

56fc91600001b0d005000338.jpg

var person = { name: 'nina', age: 30}

person._proto_ 输出  undefined

person.prototype 输出 undefined

person.getPrototypeof(person) 输出 Object{}


function foo(){}

foo._proto_ 输出 undefined 

foo.prototype 输出 Object{}

Object.getPrototypeof(foo) 输出 function(){}


提问者:vivian_xu 2016-03-31 11:00

个回答

  • _一六01
    2016-03-31 17:19:06

    person.__proto__,两个_哦