Rest API - HTTP Status Codes
Identify the error in this Express.js route that should return 404 for missing products:
app.get('/products/:id', (req, res) => {
const products = { '10': 'Table', '20': 'Chair' };
const product = products[req.params.id];
if (product === undefined) {
res.send(404, 'Product not found');
} else {
res.send(product);
}
});