Basic Javascript (95/111) | Iterate with JavaScript For Loops | freeCodeCamp

preview_player
Показать описание
Basic Javascript (95/111) | Iterate with JavaScript For Loops | freeCodeCamp

You can run the same code multiple times by using a loop.
The most common type of JavaScript loop is called a for loop because it runs ""for"" a specific number of times.
For loops are declared with three optional expressions separated by semicolons:
for ([initialization]; [condition]; [final-expression])
The initialization statement is executed one time only before the loop starts. It is typically used to define and setup your loop variable.
The condition statement is evaluated at the beginning of every loop iteration and will continue as long as it evaluates to true. When condition is false at the start of the iteration, the loop will stop executing. This means if condition starts as false, your loop will never execute.
The final-expression is executed at the end of each loop iteration, prior to the next condition check and is usually used to increment or decrement your loop counter.

Рекомендации по теме
Комментарии
Автор

Thank you sir this is another lesson that's been changed and or updated to an easier code.

zken