Skip to content

Instantly share code, notes, and snippets.

@codeBelt
Last active June 3, 2019 01:48
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 codeBelt/c620071405d1ec8b39eb9a37d60b8fba to your computer and use it in GitHub Desktop.
Save codeBelt/c620071405d1ec8b39eb9a37d60b8fba to your computer and use it in GitHub Desktop.
const person = new PersonModel({firstName: 'Joe', lastName: 'Doe', address: addressData});
console.log(person.fullName); // Joe Doe
person.update({firstName: 'John'});
console.log(person.fullName); // John Doe
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment