class Person { constructor(obj) { obj && Object.assign(this, obj); } getFullName() { return `${this.lastName} ${this.firstName}`; } }