Manipulate Arrays With pop()

Tell us what’s happening:
how to add .pop(); with myArray some one explain it please

Your code so far


// Example
var ourArray = [1,2,3];
var removedFromOurArray = ourArray.pop(); 
// removedFromOurArray now equals 3, and ourArray now equals [1,2]

// Setup
var myArray = [["John", 23]];


// Only change code below this line.
var removedFromMyArray = ["cat", 2];


Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/66.0.3359.181 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/javascript-algorithms-and-data-structures/basic-javascript/manipulate-arrays-with-pop

you are shown an example to follow:

var threeArr = [1, 4, 6];
var oneDown = threeArr.pop();

so to apply the example to the given code, then you would re-write the sentence var removedFromMyArray...
to look similar to the given example. Left hand side of the equation is the variable,and the right hand side is the array being popped.

1 Like