java script what are for loops what are they code example
Example: javascript loop
var colors=["red","blue","green"];
for(let color of colors){
console.log(color)
}
var colors=["red","blue","green"];
for(let color of colors){
console.log(color)
}