Advertisement
Guest User

Untitled

a guest
Mar 7th, 2023
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let myArray = ["Heine", 25, "Bob", 16];
  2. myArray.pop();
  3. myArray.push(21);
  4. myArray[1] = 27;
  5. console.log(myArray);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement