Promise Execution Visualizer

Watch how JavaScript Promises transition between states (Pending → Fulfilled/Rejected) and how values propagate down the .then() and .catch() chain.

Run Simulation

Execution Log

Logs will appear here...

fetchData()

PENDING

.then((data) => ... )

Waiting

.catch((err) => ... )

Waiting