In an array like below:
[{
    "sport" : "Cricket",
    "score" : "22.45"
},
{
    "sport" : "Tennis",
    "score" : "-12"
}]
I would like to iterate the JSON and find the array with lowest value of score. In this case get
{
    "sport" : "Tennis",
    "score" : "-12"
}
 
     
     
     
    