1db.users.update({}, { "$set" : { "age": 30 }}, false,true)
2// users: collection name, age: new property
3//false it's upsert argument, it tells mongo to not insert a new document when no match is found
4// true it's multi argument, it tells mongo to update multiple documents that meet the query criteria