You made my day... I also best enjoy 😄 code with phone than laptop
@wisdomsamuel-pe2fm Жыл бұрын
Thanks alot .... really working well.. This has helped me alot.. I do all of my code project with my Android
@learningtocode5049 Жыл бұрын
Happy to hear that man . If you want to know more about it, let me know I am always here .
@kazisamir1232 жыл бұрын
👌
@learningtocode50492 жыл бұрын
Mongoose code :- let mongoose = require('mongoose') // connecting to mongodb atlas mongoose.connect('mongodb+srv://:@cluster0.yoly7.mongodb.net/?retryWrites=true&w=majority') // mongoose schema let schema = new mongoose.Schema({ name : String , age : Number }) // mongoose model let model = new mongoose.model('user',schema) let newUser = new model({ name :'bean', age : 99 }) // inserting the data model.insertMany([newUser])