What is the prototype chain?
- A The order in which functions are called
- B The chain of objects consulted when resolving a property that is not found on the object itself
- C A list of all class methods
- D The sequence of event handlers
Answer
The chain of objects consulted when resolving a property that is not found on the object itself
Property lookup walks up the chain until it finds the property or reaches null. This is how inheritance works, and class syntax is sugar over it.





