Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Created June 18, 2015 18:21
Show Gist options
  • Save jcastellanos003/7ad4d876c1f93cc852d1 to your computer and use it in GitHub Desktop.
Save jcastellanos003/7ad4d876c1f93cc852d1 to your computer and use it in GitHub Desktop.
//entity country
var Country = function ( id, name, president ) {
this.id = id;
this.name = name;
this.president = president;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment