for loop in node js for array code example
Example 1: javascript loop through array
var colors = ["red","blue","green"];
colors.forEach(function(color) {
console.log(color);
});
Example 2: looping in javascript
for (initialization; test condition; iteration statement) {
Statement(s) to be executed if test condition is true
}