Lesson 15 — map & filter
Transforming data
filter keeps only the items that pass a test, and map turns every item into a new one. Both return brand-new arrays and can be chained.
Why it matters: this is how modern JavaScript reshapes data cleanly — no manual loops — and it is everywhere in React and real apps.
Tip: order matters: filter first to shrink the list, then map to transform what is left.
From [1..6], keep evens and double them. Log the result.
Ready for more? These paid resources pick up where this lesson leaves off.
Project-based JavaScript Foundations video courses — the perfect paid next step after these free lessons.
Browse on Udemy →Hand-picked JavaScript Foundations books to master the fundamentals offline.
See on Amazon →Some links on this page are affiliate links: we may earn a commission at no extra cost to you. We only recommend tools we believe are genuinely useful.