fork download
  1. const colors = ['blue', 'green', 'white'];
  2.  
  3. function iterate(item) {
  4. console.log(item);
  5. }
  6.  
  7. colors.forEach(iterate);
Success #stdin #stdout 0.03s 16908KB
stdin
Standard input is empty
stdout
blue
green
white