DEV Community

Discussion on: Stop Using React

Collapse
 
matthewpardini profile image
Matthew Pardini

All v8 engines run multi threads for javascript. It is only the event loop that is single threaded. Any async call places the work onto background process. When it is done, it gets loaded back onto the event loop thread and executed. We are ALL multithreaded js developers if we are using any modern chromium engine or writing anything in node

Some comments have been hidden by the post's author - find out more