Skip to content

Instantly share code, notes, and snippets.

@mid0111
Created April 1, 2014 13:30
Show Gist options
  • Save mid0111/9914001 to your computer and use it in GitHub Desktop.
Save mid0111/9914001 to your computer and use it in GitHub Desktop.
json string convert
var json = {
data: 'value'
};
JSON.stringify(json);
var str= 'aaaaa';
JSON.parse(str);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment