which of them is not a looping statement in JavaScript? 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 in loops javascript
for(const key in object){
// do stuff
}
// goes through the keys of an object