Created
July 17, 2018 01:54
-
-
Save caiogranero/998cc7ca4f4bebf291eaf8a09aafc682 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
class User { | |
constructor(firstName, lastName) { | |
this._firstName = firstName; | |
this._lastName = lastName; | |
} | |
static printAge(age) { | |
console.log("Esse usuário tem " + age + " anos."); | |
} | |
} | |
User.printAge(24) // Esse usuário tem 24 anos. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment