✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
MongoDB
Віртуальна властивість додана так:
taskSchema.virtual('isOverdue').get(function() {
return this.dueDate ? this.dueDate < new Date() : false;
});
Розробник робить res.json(await TaskModel.findById(id)), але клієнт не бачить поля isOverdue. Що треба додати?