#You can make a list of collection names and then loop through it
and call db.createCollection operations on mongo shell easily:
> var collectionList = ["A", "B"];
> collectionList.forEach(function(collectionName) {db.createCollection(collectionName)})