Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Last active August 16, 2019 22:30
Show Gist options
  • Save djD-REK/38f0aab19a69dfce440b7fd77d6dd827 to your computer and use it in GitHub Desktop.
Save djD-REK/38f0aab19a69dfce440b7fd77d6dd827 to your computer and use it in GitHub Desktop.
const myObject = {
dog: "πŸ•",
cat: "🐈",
koala: "🐨",
count: 3
};
console.log(JSON.stringify(myObject));
// result: {"dog":"πŸ•","cat":"🐈","koala":"🐨","count":3}
console.log(JSON.parse(JSON.stringify(myObject)));
// result: Object {dog: "πŸ•", cat: "🐈", koala: "🐨", count: 3}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment