Consider the following ExpressJS code… let comments = [];app…
Consider the following ExpressJS code… let comments = [];app.post(‘/api/comments’, (req, res) => { const comment = req.body.comment; comments.push(comment); res.status(200).send({ msg: “Successfully posted!”, });}) Which of the following is true about comments?