Created
January 2, 2019 03:13
-
-
Save phsantiago/bbcba07e681ee9e4843a3f2d9d8fe727 to your computer and use it in GitHub Desktop.
This file contains 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 Gato { | |
constructor(nome) { | |
this.nome = nome; | |
} | |
falar() { | |
console.log(`${this.nome}: Meow!`); | |
} | |
}; | |
const Pablo = new Gato('Pablo'); | |
Pablo.falar(); | |
// Pablo: Meow! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment