Skip to content

Instantly share code, notes, and snippets.

@Giagnus64
Created January 1, 2020 22:23
Show Gist options
  • Select an option

  • Save Giagnus64/3ec80eb04e3ab2ae7eb7f7113d69737e to your computer and use it in GitHub Desktop.

Select an option

Save Giagnus64/3ec80eb04e3ab2ae7eb7f7113d69737e to your computer and use it in GitHub Desktop.
Swapping function JS
function swap (arr, index1, index2){
let temp = arr[index1];
arr[index1] = arr[index2];
arr[index2] = temp;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment