How do you update data in MongoDB?
You can use the updateOne(), updateMany(), or replaceOne() methods to update data.
Example:
db.collection.updateOne({ name: "Alice" }, { $set: { age: 27 } });
- $set updates the value of a field.
- $inc increments a field's value.