Last active
December 27, 2015 20:09
-
-
Save hiroshi-maybe/7382029 to your computer and use it in GitHub Desktop.
Object literal format in Javascript.
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
| // obj1 is much more human readable! | |
| var obj1 = { | |
| "a" : "value", | |
| "bc" : "value", | |
| "def" : "value" | |
| } | |
| var obj2 = { | |
| "a" : "value", | |
| "bc" : "value", | |
| "def" : "value" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment