How to print NumberLong value in MongoDB?



The mongo shell provides the NumberLong() wrapper to handle 64-bit integers. Following is the syntax using custom variable and print using toString() −

var anyVariableName=NumberLong("yourLongNumber"); yourVariableName.toString();

To understand the above concept, let us implement the above syntax −

> var number=NumberLong("231231231231121231"); > number.toString();

This will produce the following output −

NumberLong("231231231231121231")

The second example is as follows to display NumberLong −

> var anotherNumber=NumberLong("765765765765567576"); > anotherNumber.toString();

This will produce the following output −

NumberLong("765765765765567576")
Updated on: 2020-05-14T07:04:13+05:30

691 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements