JS for Loop
Last Updated: March 16, 2022
Loop is to execute code block several times
Syntax of the for Loop
for (initialization; condition; increment)
{
code to be executed
}
Loop is to execute code block several times
for (initialization; condition; increment)
{
code to be executed
}