标签: javascript
可能重复: In JavaScript, why typeof Function.prototype is “function”, not “object” like other prototype objects?
问题说明了一切。以下所有都返回“对象”:
typeof Array.prototype typeof Date.prototype typeof String.prototype
但是以下返回“function”:
typeof Function.prototype
我认为所有原型都是物体?