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:
- a)Add a for loop to print out the array
- b)Write a fragment of code to insert a new pet named turtle to the end of mypets array .
- c)Write a fragment of code to removes the pet named turtle from mypets array