19.06.2022, 12:51
Code:
function Person(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
this.getFullName = () => `${this.first_name} ${this.last_name}`;
}
const person1 = new Person('John', 'Doe');
console.log(person1.getFullName);