Skip to content

Instantly share code, notes, and snippets.

@stavros-zavrakas
Last active March 16, 2016 23:49
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 stavros-zavrakas/dd8e1209c2cdfb181d76 to your computer and use it in GitHub Desktop.
Save stavros-zavrakas/dd8e1209c2cdfb181d76 to your computer and use it in GitHub Desktop.
Javascript object
var person = {
firstName: 'firstName',
lastName: 'lastName',
greet: function () {
return 'Hi ' + this.firstName
}
};
var stavros = Object.create(person);
stavros.firstName = 'Stavros';
stavros.lastName = 'Zavrakas';
stavros.greet();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment