Created
January 29, 2019 10:15
-
-
Save pablocattaneo/bf1d207054912bf388c3c4c019c9e192 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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