JavaScript: Move the specified amount of elements to the end of the array
JavaScript fundamental (ES6 Syntax): Exercise-94 with Solution
Write a JavaScript program to move 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.
Sample Solution:
JavaScript Code:
//#Source https://bit.ly/2neWfJ2
const offset = (arr, offset) => [...arr.slice(offset), ...arr.slice(0, offset)];
console.log(offset([1, 2, 3, 4, 5], 2));
console.log(offset([1, 2, 3, 4, 5], -2));
Sample Output:
[3,4,5,1,2] [4,5,1,2,3]
Pictorial Presentation:
Flowchart:

Live Demo:
See the Pen javascript-basic-exercise-94-1 by w3resource (@w3resource) on CodePen.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to remove an event listener from an element.
Next: Write a JavaScript program to add an event listener to an element with the ability to use event delegation.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join