Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyMongoDB$push and $pullSingle-choice MCQ

You want to add multiple values to an array in one update. What is wrong with `$push: { tags: ["a", "b"] }`?

db.col.updateOne( { _id: 1 }, { $push: { tags: ["a", "b"] } } )