What will be the output of the following code?
const json = '{"name":"John","age":30,"city":"New York"}';
const obj = JSON.parse(json);
const jsonString = JSON.stringify(obj);
console.log(json === jsonString);
What will be the output of the following code?
const json = '{"name":"John","age":30,"city":"New York"}';
const obj = JSON.parse(json);
const jsonString = JSON.stringify(obj);
console.log(json === jsonString);