Menu

gitpiper

offset javascript Code Snippet in 2024

arraybeginner

Last Updated: 13 April 2024

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 offset is negative, the elements will be moved from end to start.
const offset = (arr, offset) => [...arr.slice(offset), ...arr.slice(0, offset)];
offset([1, 2, 3, 4, 5], 2); // [3, 4, 5, 1, 2] offset([1, 2, 3, 4, 5], -2); // [4, 5, 1, 2, 3]

javascript snippet similar to offset For You in April 2024

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️

© 2024 GitPiper. All rights reserved

Rackpiper Technology Inc

Company

About UsBlogContact

Subscribe to our Newsletter

Subscribe to get resources directly to your inbox. You won't receive any spam! ✌️