 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP 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
How to update % printed to Console from MongoDB?
To update and print to console from MongoDB script, create a variable and then use the print() method.
Let us first create a variable −
> var amount=10.58945;
Here is the query to update % printed to console −
> var amount=10.58945; > print(amount.toFixed(2)+" %");
This will produce the following output −
10.59 %
Advertisements
 