I have the following object:
{
"1":{
"ProductType":"car",
"ProductId":"1",
"Brand":"Tesla",
},
"2":{
"ProductType":"car",
"ProductId":"2",
"Brand":"Ferrari",
}
etc...
}
Now i need to create a loop that iterates through the object, and i need the product id and the brand and display those. How do i do that?
I have looked at dozens of stack overflow questions and i don't find any that are about exactly my use case.