How can you add new properties and methods to the prototype of an existing constructor function?
You can add new properties and methods to the prototype of an existing constructor function by directly modifying the prototype property of the constructor. Any new instances created with that constructor will inherit these properties and methods.