Which method is used to access the properties of an object's prototype?

  • Object.prototype.get()
  • Object.keys()
  • Object.prototype.getProperty()
  • Object.getOwnPropertyNames()
To access the properties of an object's prototype, the Object.keys() method is commonly used. It returns an array of a given object's property names, including properties inherited from its prototype chain.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *