Skip to content

Instantly share code, notes, and snippets.

@valentingavela
Created May 28, 2019 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save valentingavela/df258286a8603d59918502ea7eb25bdc to your computer and use it in GitHub Desktop.
Save valentingavela/df258286a8603d59918502ea7eb25bdc to your computer and use it in GitHub Desktop.
function swap(arr, index1, index2) {
if (index1 === index2) throw Error;
[arr[index1], arr[index2]] = [arr[index2], arr[index1]];
return arr;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment