Skip to content

Instantly share code, notes, and snippets.

@erdemuslu
Last active November 13, 2019 13:31
Show Gist options
  • Save erdemuslu/66d3b9fc8cd022ae69cc4f4570dbdf55 to your computer and use it in GitHub Desktop.
Save erdemuslu/66d3b9fc8cd022ae69cc4f4570dbdf55 to your computer and use it in GitHub Desktop.
const createUser = (firstName, lastName) => {
const user = {};
user.firstName = firstName;
user.lastName = lastName;
user.sayHello = function() {
console.log(`Hello ${this.firstName} ${this.lastName}`);
}
return user;
}
const user1 = createUser('Erdem', 'Uslu');
const user2 = createUser('John', 'Smith');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment