What is the purpose of the prototype chain in JavaScript?

  • To store local variables
  • To manage asynchronous operations
  • To enable inheritance and method sharing
  • To restrict access to certain properties
The prototype chain in JavaScript is crucial for inheritance. When an object is created, it inherits properties and methods from its prototype. This chain allows objects to share functionality and promotes code reusability.
Add your answer
Loading...

Leave a comment

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