Skip to content

Instantly share code, notes, and snippets.

@avand
Last active July 14, 2016 23:38
Show Gist options
  • Save avand/3d7391c3055477a5ac0deeabb334bd40 to your computer and use it in GitHub Desktop.
Save avand/3d7391c3055477a5ac0deeabb334bd40 to your computer and use it in GitHub Desktop.
var user = {
firstName: "Avand",
lastName: "Amiri",
getFullName: function() {
return this.firstName + " " + this.lastName;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment