Im trying to sort the following array by "likes" count. For example "likes" should be sorted 86, 30, 12 along with all its associated content. Thanks!
[
[
location: "Zoo Miami",
attribution: https://instagram.com,
tags: [
zoomiami,
iphone6plus,
catfish
],
likes: [
count: 86;
data: [
full_name: "Followers 2015",
id: 1570,
profile_picture: "https://igcdn-photos.com,
username: "followers_2015_new",
],
],
],
[
location: "California",
attribution: https://instagram.com,
tags: [
California,
iphone,
cat
],
likes: [
count: 12;
data: [
full_name: "Jake Smith",
id: 1450,
profile_picture: "https://igcdn-photos.com,
username: "Jake_Smith",
],
],
],
[
location: "Philadelphia",
attribution: https://instagram.com,
tags: [
philly,
skateboard,
vans
],
likes: [
count: 30;
data: [
full_name: "John Jones",
id: 1210,
profile_picture: "https://igcdn-photos.com,
username: "John Jones",
],
],
],
]
I apologize in advance if the brackets are hard to read.