Skip to content

Instantly share code, notes, and snippets.

@alekstar79
Last active May 24, 2024 17:03
Show Gist options
  • Save alekstar79/1226cf6a449f16f82a897cf7a04f7f2e to your computer and use it in GitHub Desktop.
Save alekstar79/1226cf6a449f16f82a897cf7a04f7f2e to your computer and use it in GitHub Desktop.
Array Shift
export function shift(arr, direction, n)
{
const times = n > arr.length ? n % arr.length : n
return arr.concat(arr.splice(0, (direction > 0 ? arr.length - times : times)))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment