how to write a for loop code example
Example 1: javascript for loop
var colors=["red","blue","green"];
for (let i = 0; i < colors.length; i++) {
console.log(colors[i]);
}
Example 2: for loop c
for(int i = 0; i<n ;i++) //i is the number of iterations that occur
{ //n is the total number of iterations
//code here
}
Example 3: for loop
for(int i = 0; i < some_number; i++){
//inside loop do whatever you want
}