Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Is it possible to write to MongoDB console in JavaScript execution?
To write on console, you need to use print() method. The syntax is as follows −
print(“yourString”);
To display objects, you can use printjson(). The syntax is as follows −
printjson(yourObjectName);
Let us implement both the functions. The first query is as follows to display something −
> print("Welcome to MongoDB Console");
The following is the output on a console −
Welcome to MongoDB Console
Let us create an object. The query is as follows −
>studentInformation={"StudentName":"John","StudentAge":24,"StudentTechnicalSkills":["C","C++","Java","MongoDB","MySQL"]};
{
"StudentName" : "John",
"StudentAge" : 24,
"StudentTechnicalSkills" : [
"C",
"C++",
"Java",
"MongoDB",
"MySQL"
]
}
Here is the query to display the above object “studentInformation” −
> printjson(studentInformation);
The following is the output −
{
"StudentName" : "John",
"StudentAge" : 24,
"StudentTechnicalSkills" : [
"C",
"C++",
"Java",
"MongoDB",
"MySQL"
]
}Advertisements