Skip to content

Instantly share code, notes, and snippets.

@erdemuslu
Created November 13, 2019 14:17
Show Gist options
  • Save erdemuslu/a3dffa8bf04be3ddc30d9cbc56da9f77 to your computer and use it in GitHub Desktop.
Save erdemuslu/a3dffa8bf04be3ddc30d9cbc56da9f77 to your computer and use it in GitHub Desktop.
class User {
constructor(firstName, lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
sayHello() {
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