I’m looking for a solution to loop through a nested JSON object in pure JS. Indeed I’d like to console.log every item and each of its properties.
const json_object =
{
"item1":{
"name": "apple",
"value": 2,
},
"item2":{
"name": "pear",
"value": 4,
}
}
for(let item in json_object){
console.log("ITEM = " + item);
for(let property in json_object[item]){
console.log(?); // Here is the issue
}
}