© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Kam Lasater
Building systems to build systems
A few other options that start to move from directly iterating to manipulation of the data.
let arr = [100 , 200 , 300 , 400 , 500]; arr.map((v) => {console.log(v)}); arr.filter((v) => {console.log(v)}) arr.reduce((a,v) => {console.log(v)},{})
Abdelmalek Ennani
IT 🇸🇹🇺🇩🇪🇳🇹🙋|🇫🇷🇴🇳🇹 🇪🇳🇩 enthusiast 🔥 | 🇯🇦🇻🇦🇸🇨🇷🇮🇵🇹 💖
Thanks for sharing 🙏. Actually I was planning to make an other post to explain them