Respuesta :

Answer:

The break keyword is how you interrupt a while loop.

the syntax looks like this ↓

Python

while true:

break

Java script

while (true);

break