for loop
Loop though the code number of times defined in the "for" block.
for (var i = 0; i < 10; i++) {
console.log("Value of i = " + i);
}
copy
Loop though the code number of times defined in the "for" block.
for (var i = 0; i < 10; i++) {
console.log("Value of i = " + i);
}
copy