DEV Community

Randy Rivera
Randy Rivera

Posted on

Remove Items from an Array with pop() and shift()

  • pop() removes an element from the end of an array, while shift() removes an element from the beginning. The key difference between pop() and shift() and their cousins push() and unshift(), is that neither method takes parameters, and each only allows an array to be modified by a single element at a time.

  • Let's take a look:

function popShift(arr) {
  let popped = arr.pop(); 
  let shifted = arr.shift(); 
  return [shifted, popped];
}

console.log(popShift(['challenge', 'is', 'not', 'complete']));
console will display ['challenge', 'complete']
Enter fullscreen mode Exit fullscreen mode
  • We defined a function, popShift, which takes an array as an argument and returns a new array. I modified the function, using pop() and shift(), to remove the first and last elements of the argument array, and assign the removed elements to their corresponding variables, so that the returned array contains their values.

Top comments (0)