Skip to content

Instantly share code, notes, and snippets.

@hiroshi-maybe
Last active December 27, 2015 20:09
Show Gist options
  • Select an option

  • Save hiroshi-maybe/7382029 to your computer and use it in GitHub Desktop.

Select an option

Save hiroshi-maybe/7382029 to your computer and use it in GitHub Desktop.
Object literal format in Javascript.
// 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