Skip to content

Instantly share code, notes, and snippets.

@Damimd10
Created March 24, 2019 03:02
Show Gist options
  • Save Damimd10/e74af95af920ba4e47386ef048aa7ad3 to your computer and use it in GitHub Desktop.
Save Damimd10/e74af95af920ba4e47386ef048aa7ad3 to your computer and use it in GitHub Desktop.
var name = 'FDV';
function company() {
this.name = 'intive FDV';
}
company.prototype.name = 'intiveFDV Disney';
company.prototype.description = 'Great company to ...';
console.log(new company().name); // log 'intive FDV'
console.log(new company().description); // log 'Great company to ...'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment