Home > Database > MongoDB > body text

Is it possible to write to the MongoDB console within a JavaScript execution?

WBOY
Release: 2023-09-24 15:57:06
forward
749 people have browsed it

是否可以在 JavaScript 执行中写入 MongoDB 控制台?

To write on the console you need to use the print() method. The syntax is as follows -

print(“yourString”);
Copy after login

To display the object, you can use printjson(). The syntax is as follows -

printjson(yourObjectName);
Copy after login

Let us implement these two functions. The first query is shown below to display something -

> print("Welcome to MongoDB Console");
Copy after login

The following is the output on the console -

Welcome to MongoDB Console
Copy after login

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"
   ]
}
Copy after login

This is the query to display the above object "studentInformation" -

> printjson(studentInformation);
Copy after login

The following is the output -

{
   "StudentName" : "John",
   "StudentAge" : 24,
   "StudentTechnicalSkills" : [
      "C",
      "C++",
      "Java",
      "MongoDB",
      "MySQL"
   ]
}
Copy after login

The above is the detailed content of Is it possible to write to the MongoDB console within a JavaScript execution?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!