Please, if anyone out there can, explain to me or tell me what the line of code const [anyVariable] really means here:
router.put('/:id', withAuth, async (req, res) => {
try {
const [anyVariable] = await BlogPost.update(req.body, {
where: {
id: req.params.id,
},
});
Thank you! --Willie