Skip to content

Instantly share code, notes, and snippets.

@ron4stoppable
Created October 26, 2018 08:42
Show Gist options
  • Save ron4stoppable/bafcaf325215e08fdcd1bd810220964f to your computer and use it in GitHub Desktop.
Save ron4stoppable/bafcaf325215e08fdcd1bd810220964f to your computer and use it in GitHub Desktop.
The function move's an element in array `arr` from index `fromIndex` to index `toIndex`
function arraymove(arr, fromIndex, toIndex) {
var element = arr[fromIndex];
arr.splice(fromIndex, 1);
arr.splice(toIndex, 0, element);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment