MongoDB शेल स्क्रिप्ट का आउटपुट प्राप्त करने के लिए आप printjson () या प्रिंट () का उपयोग कर सकते हैं। आइए वस्तुओं की एक सरणी बनाएं।
ऑब्जेक्ट्स की एक सरणी बनाने के लिए क्वेरी निम्नलिखित है।
> var studentDetails=[{"StudentName":"John","StudentAge":21}, {"StudentName":"Carol","StudentAge":24},{"StudentName":"David","StudentAge":25}];
Printjson() -
. का उपयोग करके Mongo शेल स्क्रिप्ट का आउटपुट प्राप्त करने के लिए क्वेरी निम्नलिखित है:> printjson(studentDetails);
यह निम्नलिखित आउटपुट देगा -
[ { "StudentName" : "John", "StudentAge" : 21 }, { "StudentName" : "Carol", "StudentAge" : 24 }, { "StudentName" : "David", "StudentAge" : 25 } ] > var studentDetails=[{"StudentName":"John","StudentAge":21}, {"StudentName":"Carol","StudentAge":24},{"StudentName":"David","StudentAge":25}];