5.
What does the Object.prototype property represent in JavaScript?
It represents the prototype object for the Object constructor.
It represents the prototype object for all objects created using the Object constructor.
It represents the prototype object for all objects in JavaScript.
It represents the prototype object for the Array constructor.
Correct: B
The Object.prototype property represents the prototype object for all objects created using the Object constructor. It provides a set of default properties and methods that can be accessed and used by all objects in JavaScript.