Question: Insert the loops from parts A, and B below into a script element in the body below an hl that says Last Lab! Run
Insert the loops from parts A, and B below into a script element in the body below an hl that says Last Lab! Run the code and insert comments that answer the questions. A. How many times does the following loop execute? for (a = 0; a < 5; a=a+1) { document.write ("Go Gamecocks!! "); } B. What is written to the document by the following loop? var k = 10; while (k 7) { } document.write (k + " "); k = k - 1; Below those loops add two more loops: a) Write the code for a while loop that outputs these values: 5 10 15 20 25 30 35 using document.write. b) Write a loop to add the numbers from 0 to 100 and only output the sum in an alert box. Hint: Add the values in the loop and put the alert below of the loop.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
