79696467

Date: 2025-07-10 04:01:38
Score: 1
Natty:
Report link

You're using req.budytypo alert! It should be req.body.

exports.postDeleteProduct = (req, res, next) => {
    console.log("Form Here", req.body);
    const prodId = req.body.productId;
    Product.deleteById(prodId);
    res.redirect('/');
};
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Deep Thummar