Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
993 views
in Technique[技术] by (71.8m points)

关于 Function.prototype 的疑问

经过测试

function fn(){}
console.log(fn.__proto__===Function.prototype)
// true
console.log(typeof Function.prototype)
//function

Function.prototype 是一个函数,既然是函数那么他也应该有自己的原型对象,因此 Function.prototype.prototype 应该是一个对象或者函数,但是测试后发现是 undefined
求大佬解答~


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Operators/instanceof

Function.prototype  instanceof Function 
false
Function  instanceof Function 
true

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...