freeCodeCamp/guide/spanish/certifications/javascript-algorithms-and-d.../basic-data-structures/remove-items-from-an-array-.../index.md

620 B

title localeTitle
Remove Items from an Array with pop() and shift() Eliminar elementos de una matriz con pop () y shift ()

Eliminar elementos de una matriz con pop () y shift ()

  • El .pop() método y .shift() método debe ser llamado y inicializado usando los popped y shifted variables para devolver la respuesta correcta de la función.

Solución:

function popShift(arr) { 
  let popped = arr.pop(); 
  let shifted = arr.shift(); 
  return [shifted, popped]; 
 } 
 
 // do not change code below this line 
 console.log(popShift(['challenge', 'is', 'not', 'complete']));