i have a json array that i want to convert into a plain javascript array:
This is my json array:
var users = {"0":"John","1":"Simon","2":"Randy"}
How to convert it into a plain javascript array like this:
var users = ["John", "Simon", "Randy"]
|
i have a json array that i want to convert into a plain javascript array: This is my json array:
How to convert it into a plain javascript array like this:
|
||||
|
|
Edit: Insert elements at correct position in array. Thanks @RoToRa. Maybe it is easier to not create this kind of object in the first place. How is it created? |
|||||||||||||
|
|
Just for fun - if you know the length of the array, then the following will work (and seems to be faster):
|
|||||
|