function inhert(subType, superType) { subType.prototype = Object.create(superType.prototype); Object.defineProperty(subType.prototype, "constructor", { enumerable: false, writable: true, configurable: true, value: subType, }); } function Human(name) { this.name = name; this...