Skip to content

Instantly share code, notes, and snippets.

@vaidehijoshi
Last active July 13, 2017 14:56
Show Gist options
  • Save vaidehijoshi/f20333f53df1d191e3fc0fdd20bd88db to your computer and use it in GitHub Desktop.
Save vaidehijoshi/f20333f53df1d191e3fc0fdd20bd88db to your computer and use it in GitHub Desktop.
function swap(array, firstItemIndex, lastItemInde) {
var tmp = array[firstItemIndex];
// Swap first and last items in the array.
array[firstItemIndex] = array[lastItemInde];
array[lastItemInde] = tmp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment