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