console.log(typeof String.prototype); // object
console.log(typeof Number.prototype); // object
console.log(typeof Object.prototype); // object
console.log(typeof Boolean.prototype); // object
console.log(typeof Function.prototype); // function
为什么typeof Function.prototype
像其他原型对象一样返回“函数”,而不是“对象”?
谢谢!