UNPKG

ds-algo-study

Version:

Just experimenting with publishing a package

6 lines (4 loc) 149 B
/*Simple function to swap two values in an array */ function swap(array, idx1, idx2) { [array[idx1], array[idx2]] = [array[idx2], array[idx1]]; }