Skip to content

Instantly share code, notes, and snippets.

@jraff
Last active August 29, 2015 14:16
Show Gist options
  • Save jraff/4df9adbb2ba7e481059e to your computer and use it in GitHub Desktop.
Save jraff/4df9adbb2ba7e481059e to your computer and use it in GitHub Desktop.
var MYAPP = MYAPP || {};
MYAPP.Person = function(first_name, last_name) {
this.first_name = first_name;
this.last_name = last_name;
};
MYAPP.Person.prototype.full_name = function() {
return this.first_name + ' ' + this.last_name;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment