If a property is not found on an object, JavaScript looks up the property on the object's prototype, known as the _________ chain.

  • Prototype
  • Scope
  • Inheritance
  • Execution
In JavaScript, the process of searching for a property involves traversing the prototype chain. If the property is not found on the object, it looks up in the prototype chain until it finds the property.
Add your answer
Loading...

Leave a comment

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