DEV Community

Discussion on: Async operations in JavaScript

Collapse
 
abhishek97 profile image
Abhishek Gupta

If your program was dealing with some CPU heavy task other tasks also would have to wait.

This is still true for asynchronous code. With your async code, other tasks would have to wait if your cpu core is busy.

Collapse
 
kartik2406 profile image
Kartik Malik

Yeah right.