请有人解释为什么 b.prototype.prototype undefined (not "Object {}") ?
a = function(){}
function b(){}
console.log(a.prototype) //Object {}
console.log(b.prototype) //b {}
console.log(a.prototype.prototype) //undefined
console.log(b.prototype.prototype) //undefined
a > 对象{} > 未定义 - 好的
b > b{} > ???