hgv

hgv
const mongoose =require(‘mongoose’)
const studentSchema =new mongoose.Schema({
    Name : String,
    Age : Number,
    Grade : String
})
const student = mongoose.model(‘student’,studentSchema)
module.exports=student
Scroll to Top