The object whose properties are inherited by all instances of the class, and properties whose values are functions behaving like instance methods of the class, is _____________
The object whose properties are inherited by all instances of the class, and properties whose values are functions behaving like instance methods of the class, is _____________ Correct Answer Prototype object
A prototype is an object that is associated with every functions and object by default in JavaScript, where function’s prototype property is accessible and modifiable and object’s prototype property (aka attribute) is not visible. The properties of the prototype object are inherited by all instances of the class, and properties whose values are functions behave like instance methods of the class.