what am i doing wrong?
// Setup
const myArray = [["John", 23], ["dog", 3]];
myArray.shift();
myArray.unshift(["paul",35]);
what am i doing wrong?
// Setup
const myArray = [["John", 23], ["dog", 3]];
myArray.shift();
myArray.unshift(["paul",35]);
Hello, can you explain a little more about what your goal is here, and what you think the code you have right now is doing? If you are working on a challenge, can you post the link to the challenge along will all of your code. You can follow the example below, you dont have to type all your code but please paste all your code in the are the gif shows
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.