What happens if an Express middleware does not call next() or send a response?
- A The next middleware runs automatically
- B The request hangs until the client times out
- C Express throws an error
- D The server crashes
Answer
The request hangs until the client times out
Control is never passed on, so no response is ever sent. This produces a silent hang rather than a visible error.





