Skip to content

Instantly share code, notes, and snippets.

@osahyoun
Created August 2, 2012 10:23
Show Gist options
  • Select an option

  • Save osahyoun/3236111 to your computer and use it in GitHub Desktop.

Select an option

Save osahyoun/3236111 to your computer and use it in GitHub Desktop.
JSON#stringify
var javascript_obj = {animal: 'Zebra'};
typeof javascript_obj;
// "object"
var json_obj = JSON.stringify(javascript_obj);
typeof json_obj;
// "string"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment