/3 mins read/---
Does JavaScript Promise.all() run in parallel or sequential?
JavaScript is a single-threaded programming language, so it can't run multiple things at the same time, Promise.all() actually runs promises concurrently, not in parallel!. Let's dive in to see how it works.