Suppose I have the following data.
Data = [3,5,1,7,3,9,10];
If I try to use the sort method in this array, sorting is done as if the data were not numeric.
Data.sort()
But the data type is numeric when I run the following function:...
asked on
20.03.2014 / 13:37