class Person { constructor(firstName) { this.firstName = firstName } } _.extend(Person.prototype, {addedProperty:"ssssxxxxssss"}); const p = new Person("james"); console.log(p.addedProperty);