How to convert the below json into
var body = [{id:1,Country:'Denmark',price: 7.526,Location:'Copenhagen'},
{id:2, Country:'Switzerland', price:7.509, Location:'Bern'},
]
From above json into array of array as like below.
varbody = [
[1, 'Denmark', 7.526, 'Copenhagen'],
[2, 'Switzerland', 7.509, 'Bern'],
[3, 'Iceland', 7.501, 'Reykjavík'],
[4, 'Norway', 7.498, 'Oslo'],
]