Skip to content

Instantly share code, notes, and snippets.

@matthieua
Forked from PavanKu/parent.js
Created November 15, 2018 15:58
Show Gist options
  • Save matthieua/2105f918a69be6c67f9d1df796be87ea to your computer and use it in GitHub Desktop.
Save matthieua/2105f918a69be6c67f9d1df796be87ea to your computer and use it in GitHub Desktop.
this inside object method
var person = {
firstName: "John",
lastName : "Doe",
id : 5566,
fullName : function() {
return this.firstName + " " + this.lastName;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment