0 votes
in JavaScript by
The meaning for Augmenting classes is that:

a) objects inherit prototype properties even in dynamic state

b) objects inherit prototype properties only in dynamic state

c) objects inherit prototype properties in static state

d) object doesn't inherit prototype properties in static state

1 Answer

0 votes
by
Answer:-  A

Reason: Javascript's prototype-based inherit system is dynamic: an object inherits properties with its prototype, even if the prototype changes after the creation of the object. This means that we can increase JavaScript classes by adding new methods only to their prototype objects.
...