Skip to content

Instantly share code, notes, and snippets.

@NielsMinssen
Created May 12, 2023 13:22
Show Gist options
  • Save NielsMinssen/0bde29f0c5f724104789ffabee1ee2a0 to your computer and use it in GitHub Desktop.
Save NielsMinssen/0bde29f0c5f724104789ffabee1ee2a0 to your computer and use it in GitHub Desktop.
const collection = db.collection('ma_collection');
collection.updateOne({ nom: "Louis" }, { $set: { age: 99 } }, function(err, res) {
console.log("Document mis à jour !");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment