Skip to content

Instantly share code, notes, and snippets.

@Shinpeim
Created March 3, 2015 18:08
Show Gist options
  • Save Shinpeim/e1931f5bc69c8ffc4eba to your computer and use it in GitHub Desktop.
Save Shinpeim/e1931f5bc69c8ffc4eba to your computer and use it in GitHub Desktop.
jsonString = '{"a": 1, "b": 2}';
json = JSON.parse(jsonString);
console.log(json["a"]); // 1
console.log(json["b"]); // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment