Created
September 17, 2019 04:08
-
-
Save djD-REK/5cbc9b3617e601b68da5beceecccaff7 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
| const hello = { world: function() { | |
| console.log('Hello World!') | |
| }} | |
| hello.world() // Hello World! | |
| const helloAgain = { world() { | |
| console.log('Hello World!') | |
| }} | |
| helloAgain.world() // Hello World! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment