freeCodeCamp/curriculum/challenges/italian/02-javascript-algorithms-an.../basic-javascript/manipulate-arrays-with-shif...

1.8 KiB

id title challengeType videoUrl forumTopicId dashedName
56bbb991ad1ed5201cd392cd Manipolare gli array con shift() 1 https://scrimba.com/c/cRbVETW 18238 manipulate-arrays-with-shift

--description--

pop() rimuove sempre l'ultimo elemento di un array. E se volessi rimuovere il primo?

È qui che entra in gioco .shift(). Funziona proprio come .pop(), solo che rimuove il primo elemento invece dell'ultimo.

Esempio:

const ourArray = ["Stimpson", "J", ["cat"]];
const removedFromOurArray = ourArray.shift();

removedFromOurArray dovrebbe avere un valore stringa Stimpsone ourArray dovrebbe valere ["J", ["cat"]].

--instructions--

Utilizza la funzione .shift() per rimuovere il primo elemento da myArray e assegna il valore estratto a removedFromMyArray.

--hints--

myArray dovrebbe ora essere uguale a [["dog", 3]].

assert(
  (function (d) {
    if (d[0][0] == 'dog' && d[0][1] === 3 && d[1] == undefined) {
      return true;
    } else {
      return false;
    }
  })(myArray)
);

removedFromMyArray dovrebbe contenere ["John", 23].

assert(
  (function (d) {
    if (
      d[0] == 'John' &&
      d[1] === 23 &&
      typeof removedFromMyArray === 'object'
    ) {
      return true;
    } else {
      return false;
    }
  })(removedFromMyArray)
);

--seed--

--after-user-code--

if (typeof removedFromMyArray !== 'undefined') (function(y, z){return 'myArray = ' + JSON.stringify(y) + ' & removedFromMyArray = ' + JSON.stringify(z);})(myArray, removedFromMyArray);

--seed-contents--

// Setup
const myArray = [["John", 23], ["dog", 3]];

// Only change code below this line

--solutions--

const myArray = [["John", 23], ["dog", 3]];

// Only change code below this line
const removedFromMyArray = myArray.shift();