This video will explain on how to convert a JavaScript object into a JSON string with example in Malayalam.
Example:
let Book={};
Book.title = "Two States";
Book.author = "Chetan Bhagat";
Book.price = 200;
let jsonStr = JSON.stringify(Book);
console.log(jsonStr);