Which statement is true about Node.js and threads?
JavaScript execution in Node.js is single-threaded, but I/O operations are executed using multiple threads.
The event loop is single-threaded, but a JavaScript VM can use multiple threads.
Every Node process gets four threads that it can share between its JavaScript VM and the event loop.
Every Node process runs in a single thread, and all the I/O work is run in that same thread.