I'm looking for the simplest way to loop throug a JSON file.
The Data Syntax (can't change that):
{"1":{"name":FOO","price":"1","sold":"100"},"2":{"name":"FOO","price":"1","sold":"100"}
The data is stored i a file called prices.json
. How can I loop through all 7573 entrys?
Thanks..