Commit 16a7fbd
Dictionary (New Word): Infinite Loop (#84)
# Word
#### Infinite Loop
# Meaning/Definition
An infinite loop is a loop that has no end. A loop that has a
terminating condition that can never be met. To some certain conditions
it can be useful but most times causes issues when not properly handled.
Example of an infinite loop in JS is a while loop
while (true) {
console.log("This will run forever.");
}
---------
Co-authored-by: Olabode Lawal-Shittabey <babblebey@gmail.com>1 parent 3e9af94 commit 16a7fbd
1 file changed
Lines changed: 20 additions & 0 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
| 20 | + | |
0 commit comments