JSON and Data Shapes
JSON Stringify
Convert a small object shape into text.
JSON Stringify
json_stringify.js
const count = 2;
const json = JSON.stringify({ item: "book", count: count });
console.log("count=" + count);
console.log("json=" + json);
json-stringify
`JSON.stringify` turns a JavaScript value into JSON text. JSON text is useful for storing or sending structured data.