Rest API - HTTP Status Codes
Given this code snippet, what status code will the client receive?
app.post('/submit', (req, res) => {
if (req.body.name) {
res.status(201).send('Created');
} else {
res.status(422).send('Unprocessable Entity');
}
});