文中Object.getPrototypeOf(Parent)其实就是Function.prototype吧:)
Object.getPrototypeOf(Parent)
Function.prototype
Object.getPrototypeOf(Parent) === Function.prototype; //true
同样Object、Array、String等构造函数本身也是函数,故也原型继承自Function.prototype
Object
Array
String