Skip to content

Instantly share code, notes, and snippets.

@erdemuslu
Created November 13, 2019 13:53
Show Gist options
  • Save erdemuslu/9a39228c95f2c888d04a99fac064fe30 to your computer and use it in GitHub Desktop.
Save erdemuslu/9a39228c95f2c888d04a99fac064fe30 to your computer and use it in GitHub Desktop.
const User = function(firstName, lastName) {
this.fistName = firstName;
this.lastName = lastName;
}
User.prototype.sayHello = function() {
console.log(`Hello ${this.firstName} ${this.lastName}`);
}
const user1 = new User('Erdem', 'Uslu');
const user2 = new User('John', 'Smith');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment