Skip to content

Instantly share code, notes, and snippets.

@tyfkda
Created February 11, 2015 01:11
Show Gist options
  • Save tyfkda/48027583b64be0dd8625 to your computer and use it in GitHub Desktop.
Save tyfkda/48027583b64be0dd8625 to your computer and use it in GitHub Desktop.
JSON on JS
(function() {
var json = {a: 1, b: 2};
// Encode.
var str = JSON.stringify(json);
// Decode.
var decoded = JSON.parse(str);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment