Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pablocattaneo/bf1d207054912bf388c3c4c019c9e192 to your computer and use it in GitHub Desktop.
Save pablocattaneo/bf1d207054912bf388c3c4c019c9e192 to your computer and use it in GitHub Desktop.
function User (name,age) {
this.name = name,
this.age = age
}
var user1 = new User('Pablo', 36)
var user2 = new User('Victoria', 34)
User.prototype.emailDomain = '@family.com'
var user3 = new User('Eva')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment