Prototype-based inheritance in JavaScript is an example of _________ inheritance, as opposed to class-based inheritance.
- Single
- Multiple
- Hierarchical
- Object
JavaScript uses prototype-based inheritance, where objects can inherit properties from other objects, forming a hierarchical chain of prototypes. This is different from class-based inheritance systems.
Loading...
Related Quiz
- How does the static structure of ES6 Modules aid in tree shaking compared to CommonJS?
- In what way does the Spread Operator interact with iterables?
- Can a default export be imported with any name?
- When optimizing a web application for performance, considering the need for tree shaking and module caching, which module system offers more advantages?
- What is a potential pitfall when using multiple named exports in an ES6 module?