Answers for "9.4.1.2. Loop Condition¶"

0

9.4.1.2. Loop Condition¶

/*This loop does not iterate at all, because its condition is false to 
start with.*/

for (let i = 0; i < -1; i++) {
   console.log("LaunchCode");
}
Posted by: Guest on June-17-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language