DEV Community

Discussion on: Code Smell 53 - Explicit Iteration

Collapse
 
mouseeatscat profile image
Michel Descoteaux • Edited

Or in this case it could have been simplified even further to:

for (color of colors) {
  console.log(color);
}

//Closures and arrow functions
colors.forEach(color => console.log(color));
Enter fullscreen mode Exit fullscreen mode
Collapse
 
ifarmgolems profile image
Patrik Jajcay
colors.forEach(console.log);
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
mcsee profile image
Maxi Contieri

Nice!