const mongoose =require(‘mongoose’)
const studentSchema =new mongoose.Schema({
Name : String,
Age : Number,
Grade : String
})
const student = mongoose.model(‘student’,studentSchema)
module.exports=student
Please follow and like us: