Last active
April 6, 2016 19:36
-
-
Save codemilli/c64c0a4a35b6fdcf3cc7718e55c8e736 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 a = { prop: 'haha' }; | |
| console.log('prop => ', a.prop); // haha | |
| a.prop = 'hihi'; | |
| console.log('prop => ', a.prop); // hihi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment