'how to update nested document in mongodb and mongoose

I have a nested document named notes containing noteName and noteContent fields in mongodb collection I want to update noteName and noteContent in mongoDB and mongoose

 { "_id" : ObjectId("61fbf5953663ff8e008839d1"), "email" : "[email protected]", "password" :"123", 
    "notes" : [ ], "__v" : 0 }


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source