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: 14-May-2020

471 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements