JavaScript: Takes a function as an argument, then makes the first argument the last
JavaScript fundamental (ES6 Syntax): Exercise-232 with Solution
Move First Argument Last
Write a JavaScript program that takes a function as an argument, then makes the first argument the last.
- Use argument destructuring and a closure with variadic arguments.
- Splice the first argument, using the spread operator (...), to make it the last before applying the rest.
Sample Solution:
JavaScript Code:
Output:
{"name":"John Smith"}
Flowchart:

Live Demo:
For more Practice: Solve these Related Problems:
- Write a JavaScript program that takes a function and returns a new function which moves the first argument to the end of the arguments list.
- Write a JavaScript function that rearranges its input arguments so that the first becomes the last before invoking the original function.
- Write a JavaScript program that demonstrates parameter shifting by cyclically rotating the arguments of a function.
- Write a JavaScript function that wraps another function to automatically reposition its first argument to the final slot.
Improve this sample solution and post your code through Disqus
Previous: Write a JavaScript program to iterate over all own properties of an object in reverse, running a callback for each one.
Next: Write a JavaScript program to flatten an object with the paths for keys.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics