Read this value as a number. The validity of the returned number can only be guaranteed for values up to
Math.pow(2, 53) - 1
due to underlying platform limitations of JavaScript.
the numerical value of this int64, as a 53-bit integer.
Read this value as a string.
the radix to use. Defaults to base 10
.
the string representation of the int64 value.
Signed 64-bit integer. Provides a means to read integer values larger than supported natively by JavaScript.
Used as the value type of the Int64 data type:
var datatype = diffusion.datatypes.int64(); var value = new datatype.Int64("9223372036854775807");
6.0