1min Css Questions

Assume you have created an array of pets:

var mypets = new Array();

mypets[0] = “dog”;

mypets[1] = “cat”;

mypets[2] = “goldfish”;

Write a JavaScript code to answer the following questions:

  1. a)Add a for loop to print out the array
  2. b)Write a fragment of code to insert a new pet named turtle to the end of mypets array .
  3. c)Write a fragment of code to removes the pet named turtle from mypets array