Skip to content

Instantly share code, notes, and snippets.

@lmzach09
Created July 27, 2019 04:16
Show Gist options
  • Save lmzach09/e6039e59ec5baac23ad98ba9f19b663f to your computer and use it in GitHub Desktop.
Save lmzach09/e6039e59ec5baac23ad98ba9f19b663f to your computer and use it in GitHub Desktop.
Object to JSON string Success in JavaScript
let obj = { "key": "value" };
let myString = JSON.stringify(obj);
console.log(myString);
// '{"key":"value"}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment