Create a Form with appropriate CSS containing form elements or fields to get details from the user to create the above three collections and insert 10 documents in each collection to MongoDB code example
Example 1: insert command mongo
db.collection.insert( { item: "card", qty: 15 } )
Example 2: insert property multiple documents mongodb
db.myCollection.update({}, {$set: {"isOpen": false}}, false, true)