Fill This Form To Receive Instant Help
Homework answers / question archive / 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
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: