I'm trying to sort this array.
array = new Array();
array[0] = "Population23"
array[1] = "Population3"
So i used the sort function like this array.sort()
And it gives me :
array[0] = "Population23"
array[1] = "Population3"
Instead of :
array[0] = "Population3"
array[1] = "Population23"
Why ? And how can i fix this to give me the "Instead of" result ?