What happens if a method is called on an object that does not define it but its prototype does?

  • The method will throw an error
  • The method will be executed using the prototype's implementation
  • The method will be executed using the object's implementation
  • The method will call the constructor of the object
If a method is called on an object that does not define it but its prototype does, the method will be executed using the prototype's implementation. This is a key feature of prototype-based inheritance in JavaScript.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *