1/*It is critical that the loop condition eventually becomes false. A loop
2for which the condition is never false is known as an infinite loop,
3because it never stops iterating. A program that contains an infinite
4loop will only stop after running out of memory or being manually
5stopped (for example, using control+c in a terminal).*/
6
7//This is an infinite loop, because its condition will always be true.
8for (let i = 0; i > -1; i++) {
9 console.log("LaunchCode");
10}