prototypesJavaScriptPrototypesMediumHow does prototypal inheritance work in JavaScript?1Objects inherit via a [[Prototype]] reference that the engine follows up the prototype chain2Classes copy all parent methods into the child at definition3Inheritance only works with the class keyword4Objects cannot inherit from other objectsBack to list