Arrays With unshift()

Tell us what’s happening:

Your code so far


myArray.unshift(["paul", 35]);

console.log(myArray);```
```js

// Example
var ourArray = ["Stimpson", "J", "cat"];
ourArray.shift(); // ourArray now equals ["J", "cat"]
ourArray.unshift("Happy"); 
// ourArray now equals ["Happy", "J", "cat"]

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

// Only change code below this line.
myArray.shift();
myArray.unshift(["paul", 35]);
console.log(myArray);

Your browser information:

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

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

Double check what the test wants you to unshift to the front of the array, and then compare that to what you put in.

Thank you very much, resolved it.

Awesome! Happy coding

1 Like