Concept Flow - res.status for status codes
Request received
Set status code with res.status(code)
Attach response data (optional)
Send response with res.send() or res.json()
Client receives response with status code
This flow shows how Express sets HTTP status codes using res.status, then sends the response to the client.