DEV Community

Discussion on: Code Smell 53 - Explicit Iteration

Collapse
 
bugrahasbek profile image
Buğra Hasbek

I don't use js and this confused the hell out of me at first sight :) i was expecting color to be an element in colors but it is used as an index? I think I prefer the c++ way

for (auto color:colors) 
  print(color);
Enter fullscreen mode Exit fullscreen mode