Node.JS Quiz
Answer:
Node.js does spawn child threads for certain tasks such as asynchronous I/O, but these run behind the scenes and do not execute any application JavaScript code, nor block the main event loop.
If threading support is desired in a Node.js application, there are tools available to enable it, such as the ChildProcess module.
If you want to explore more, visit our Node.JS edu & tutorials section!
Below are some examples: