Get the largest value from Json object with Javascript
- by neilc
Hi
This should be an easy one. I just cant figure it out. 
How do I get the largest value from this piece of JSON with javascript. 
{"data":{"one":21,"two":35,"three":24,"four":2,"five":18},"meta":{"title":"Happy with the service"}}
The key and value I need is: 
"two":35 
as it is the highest
thanks