To send a custom HTTP status message in Node Express, we call send
with the message.
For instance, we write
res.status(400).send('Current password does not match');
to call send
with the status message after call status
to send the response with code 400.