Answers for "mongodb js adding element to list"

2

mongodb add to array if not exists

db.tags.update(
    {name: 'sport'},
    {$addToSet: { videoIDs: "34f54e34c" } }
);
Posted by: Guest on October-22-2020
1

mongodb add multiple element to array

db.students.update(
   { name: "joe" },
   { $push: { scores: { $each: [ 90, 92, 85 ] } } }
)
Posted by: Guest on July-01-2020

Code answers related to "mongodb js adding element to list"

Browse Popular Code Answers by Language