Converting a JavaScript object to a JSON String is very easy with the help of JSON.stringify() method.
Let's take a look at an example:
JavaScript Object
const album = {
name: "Hopes and Fears",
artist: "Keane",
year: 2004
};
Convert to JSON Object
const jsonAlbum = JSON.stringify(album);
Print the JSON Object
console.log(jsonAlbum);
Output:
Provide Feedback For This Article
We take your feedback seriously and use it to improve our content. Thank you for helping us serve you better!
😊 Thanks for your time, your feedback has been registered!
Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!