Quickjs.NumberSourceJavaScript Number built-in object
This module mirrors the JavaScript Number API with prototype methods for number-to-string conversion.
Number of digits to use
Exponential notation control
Full options for formatting
Default options: Free format, Auto exponent, radix 10, no minus zero
of_int n converts integer n to string.
of_int32 n converts 32-bit integer n to string.
of_int64 n converts 64-bit integer n to string.
of_uint32 n converts unsigned 32-bit integer n to string.
of_uint64 n converts unsigned 64-bit integer n to string.
of_int_radix ~radix n converts integer n to string in given radix.
of_int32_radix ~radix n converts 32-bit integer n to string in given radix.
of_int64_radix ~radix n converts 64-bit integer n to string in given radix.