for loops code example
Example 1: js loop
var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Example 2: javascript loop
let array = ['Item 1', 'Item 2', 'Item 3'];
array.forEach(item => {
console.log(item);
});
Example 3: javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
Example 4: pytho loops
for x in loop:
print(x)
Example 5: for loops
MyString = ""
for i in range(5):
MyString += "hi"
print(MyString)
Example 6: for loops
for (initialization expr; test expr; update expr)
{
}
**Initialization Expression: In this expression we have to initialize the loop counter to some value. for example: int i=1;
Test Expression: In this expression we have to test the condition. If the condition evaluates to true then we will execute the body of loop and go to update expression otherwise we will exit from the for loop. For example: i <= 10;
Update Expression: After executing loop body this expression increments/decrements the loop variable by some value. for example: i++;**