Created
April 14, 2018 08:08
-
-
Save agoiabel/3b4f5b8d8555fdf5c4a274403924e78e 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 Person { | |
| name = 'Abel'; //no need for the constructor | |
| //new way of defining the methods | |
| const printMyName = () => { | |
| console.dir(this.name); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment