You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lesson doesn't explain setPrototypeOf() thoroughly, it doesn't make it clear that Object.setPrototypeOf(Player.prototype, Person.prototype); is like Player.prototype.__proto__ = Person.prototype
and the explanation of why Player.prototype = Person.prototype doesn't work is not clear