Actually I have an json object like this coming as an server response
{"0":"1","1":"2","2":"3","3":"4"}
SO I want to convert it into javascript array like
["1","2","3","4"]
Is there any good way to do this where ever I am reading people are using complex logic using loops. So Is there any other way to do this?