Why does Node not block while waiting for operations to complete?
Why does Node not block while waiting for operations to complete? Correct Answer Asynchronous
Node executes the function the in one go without any waiting or blocking. Because the Node’s functions and methods are asynchronous, they do not block while waiting for operations to complete.