What belongs in the blanks if you want to ensure that the co…

What belongs in the blanks if you want to ensure that the command block executes at least once, but from that point onward the loop stops when the loop counter’s value exceeds 1000? Assume that an integer input by the user has been assigned to the variable myNumber. let i = myNumber; _____    document.write(i + “”);    i *= 2; _____ document.write(“Let’s stop multiplying by 2 now!”);

Imagine that you are trying to locate some logic errors in a…

Imagine that you are trying to locate some logic errors in a JavaScript program using your browser console’s debugging tools. You can use the “_____” button to trace a function step by step, or the “_____” button to run a function without evaluating it in detail.