JS: JSON.stringify
JSON.stringify(obj)
-
Convert a JavaScript object to JSON string format.
const x = { a: 3, b: [4, 2] }; console.log( JSON.stringify(x) === `{"a":3,"b":[4,2]}`, );
JSON.stringify(obj)
const x = { a: 3, b: [4, 2] }; console.log( JSON.stringify(x) === `{"a":3,"b":[4,2]}`, );