Lab

How map, filter and reduce Work

medium
1/9

Step Explanation

Understand what is happening first

1/9

Execution Visualizer

Watch memory, stack, queues, and output

Execution Visualizer

live
numbers is stored in memory. The original array will be read by map, filter, and reduce.

Call Stack

1 frame
TOP ↑
global()
frame 0
↓ BOTTOM
Global Context

Memory

1 variable

Heap Memory

numbersarr→ refnew
"[1, 2, 3, 4]"
Console Output

awaiting output...

varfnobjarrclosure

Code Preview

Active line 1

Code

line 1
JavaScript
Tap Expand to view full code

1/9