offset
Moves the specified amount of elements to the end of the array.
- Use
Array.prototype.slice()twice to get the elements after the specified index and the elements before that. - Use the spread operator (
...) to combine the two into one array. - If
offsetis negative, the elements will be moved from end to start.