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