I have an array in javascript that contains the following:
- ["Value 1", "Value 5". "Value 10", "Value 11"];
How would I go about sort this array so that it does not appear as follows:
- ["Value 1", "Value 10". "Value 11", "Value 5"];
But as:
- ["Value 1", "Value 5". "Value 10", "Value 11"];
Any help would be great.