147k views
0 votes
We use loops to: Process Numeric Data Ask users to enter information Repeat blocks of code Ask True/False questions

1 Answer

3 votes

Answer:

Repeat blocks of code.

Step-by-step explanation:

EXAMPLE JAVASCRIPT LOOP CODE

_________________________________________________________

INPUT:

while(true){//Check If bool True=True

console.log("Hello World!")

}

_________________________________________________________

OUTPUT:

Hello World!

Hello World!

Hello World!

Hello World!

Hello World!


\cdots

Hello World!

Hello World!

User STF
by
3.0k points