>_BeginnerCoder
Donate

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.

Task

From [1..6], keep evens and double them. Log the result.

← Back
Next →

Enjoying this lesson? Share it 👇

Keep going with JavaScript Foundations

Ready for more? These paid resources pick up where this lesson leaves off.

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.