Skip to content

Instantly share code, notes, and snippets.

@lenafaure
Created May 7, 2017 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lenafaure/f9c11f3ecee4ad2da5a4738378b3fdb8 to your computer and use it in GitHub Desktop.
Save lenafaure/f9c11f3ecee4ad2da5a4738378b3fdb8 to your computer and use it in GitHub Desktop.
var customer = {
firstName: "John",
lastName: "Doe",
greetCustomer: function(){
// We use "this" instead of repeating "customer"
console.log("Hello again " + this.firstName + " " + this.lastName + "!");
}
}
customer.greetCustomer(); // Prints "Hello again John Doe!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment