经过测试
function fn(){}
console.log(fn.__proto__===Function.prototype)
// true
console.log(typeof Function.prototype)
//function
Function.prototype 是一个函数,既然是函数那么他也应该有自己的原型对象,因此 Function.prototype.prototype 应该是一个对象或者函数,但是测试后发现是 undefined
求大佬解答~
https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/instanceof
Function.prototype instanceof Function
false
Function instanceof Function
true