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")