import SwapArray from 'swap-array'; var SomeArray = ['thats','cool','dude']; SwapArray(SomeArray, 0, 2); // ['dude','thats','cool']; (wrong) // ['dude','cool','thats']; (correct)