Backend 1.2_CW Exercises
1. learning data modeling
Create mongoose models for the given images.
Add data to the model
Solution
const mongoose = require('mongoose')
const studentSchema = new mongoose.Schema({
registrationNumber: String,
studentId: Number,
studentN...
seemyblog.hashnode.dev9 min read