为什么typeof Function.prototype返回“function”而不是“object”?

时间:2011-06-09 22:47:53

标签: 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

我认为所有原型都是物体?

0 个答案:

没有答案