Untitled

 avatar
unknown
plain_text
3 years ago
135 B
2
Indexable
// Setup
var myArray = [["John", 23], ["dog", 3]];
myArray.shift();

// Only change code below this line

myArray.unshift(["Paul",35]);
Editor is loading...