Sorting a array from a certain index.

Sorting a array from a certain index.

Hi, is there a way you can use sort on an array from a certain index?

For example if I have an array, i.e., myArray=new Array(6,2,3,8,7,5,1);

Is it possible to sort from the index(1) in this case, so the sorted array would be 6,1,2,3,4,5,7,8

Or will it be a case of duplicating the Array from index 1 - this isn't a hassle but just unsure if there was another way with the sort() function.

Thanks,
Lammie.