js convert json to array
📅 — 👀 105 — 👦var json = '{"name":"John", "age":30, "city":"New York"}';
var obj = JSON.parse(json);
console.log(obj);
var json = '{"name":"John", "age":30, "city":"New York"}';
var obj = JSON.parse(json);
console.log(obj);