标签: javascript inheritance constructor prototype
我目前正在学习javascript原型和继承(男人,这很令人困惑,但还在继续战斗)
function MyFunc(){}
我注意到constructor和MyFunc
constructor
MyFunc
MyFunc.prototype
我知道MyFunc.prototype.constructor指向MyFunc,但我不确定Myfunc.constructor指向的位置?
MyFunc.prototype.constructor
Myfunc.constructor
那么MyFunc.constructor指向哪里以及它的用途是什么?
MyFunc.constructor