I have a large number (235) of JSON strings as follows:
"57": {
"ID": 6986,
"Town": "Paris",
"latitude": 48.8829447,
"longitude": 2.3453532999999
},
"58": {
"ID": 6987,
"Town": "Paris",
"latitude": 48.8749566,
"longitude": 2.3588815000001
}
And I would like to make a JavaScript array. I have read many posts on the Internet about it, but all of them seem to be not appropriate for my case. What should I do?