Last active
February 25, 2018 08:31
-
-
Save MacKentoch/5cb8acba1fb605a901ca8773807f59cf 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 MaClass { | |
| constructor(valeurInitial) { | |
| this.maPropriete = valeurInitial; | |
| } | |
| maMethode() { | |
| return this.maPropriete; | |
| } | |
| } | |
| const monObjet = new MaClass('valeur initial'); | |
| monObjet.maMethode(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment