β‘$dec
Name
Usage Type
Description
/* Example Usage */
const model = ...Someone Model
(async () => {
await model.findOneAndUpdate({ name: "Test", age: 20 },{ $dec:{ age: 2 } });
/*
The "age" value that was 20 is now 18
*/
})();
Last updated
/* Example Usage */
const model = ...Someone Model
(async () => {
await model.findOneAndUpdate({ name: "Test", age: 20 },{ $dec:{ age: 2 } });
/*
The "age" value that was 20 is now 18
*/
})();
Last updated