© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Marcus Pohorely
CTO/CEO @Pagelanes.com
with the help of underscore & ES6:
_.each(items, ( item ) => { // do something });
Luiz Estácio
Fullstack Developer
I like this approach because the Underscore enable iterate over Array and Objects.
Galeel Bhasha
Front End Developer
items.map((item) => {// do something })
This just works with collections isn`t it @Galeel?