Infinite Loop

An infinite loop is a loop in programming that never stops running because the ending condition is never met (or missing).

Key idea:

Example (JavaScript):

while (true) {
  console.log("This will run forever!");
}

This loop will keep printing endlessly until the program is stopped.