Returns Supported Clients Sample Returns Supported Clients Sample Returns Supported Clients Sample Returns Supported Clients Sample Returns Supported Clients Sample Returns Supported Clients Sample Parameters Returns Supported Clients Sample Returns Supported Clients Sample Parameters Returns Supported Clients Sample Returns Supported Clients Sample Returns Supported Clients Sample Parameters Returns Supported Clients Sample Returns Supported Clients Sample Parameters Returns Supported Clients Sample
Dec 02, 2023 11:14
Supported Clients
SmartClient
WebClient
NGClient
MobileClient
Property Summary
Number
MAX_VALUE
The largest representable number.
Number
MIN_VALUE
The smallest representable number.
Number
NEGATIVE_INFINITY
Special value representing negative infinity; returned on overflow.
Object
NaN
Special "not a number" value.
Number
POSITIVE_INFINITY
Special value representing infinity; returned on overflow.
Methods Summary
String
toExponential()
Returns a string representing the number in exponential notation.
String
toExponential(fractionDigits)
Returns a string representing the number in exponential notation.
String
toFixed()
Returns a string representing the number in fixed-point notation.
String
toFixed(digits)
Returns a string representing the number in fixed-point notation.
String
toLocaleString()
Converts the number into a string which is suitable for presentation in the given locale.
String
toPrecision()
Returns a string representing the number to a specified precision in fixed-point or exponential notation.
String
toPrecision(precision)
Returns a string representing the number to a specified precision in fixed-point or exponential notation.
String
toString()
Returns a string representing the specified Number object.
String
toString(radix)
Returns a string representing the specified Number object.
Property Details
MAX_VALUE
The largest representable number.
application.output("Largest number: " + Number.MAX_VALUE);
MIN_VALUE
The smallest representable number.
application.output("Smallest number: " + Number.MIN_VALUE);
NEGATIVE_INFINITY
Special value representing negative infinity; returned on overflow.
application.output("Negative infinity: " + Number.NEGATIVE_INFINITY);
NaN
Special "not a number" value.
application.output("NaN: " + Number.NaN);
POSITIVE_INFINITY
Special value representing infinity; returned on overflow.
application.output("Positive infinity: " + Number.POSITIVE_INFINITY);
Methods Details
toExponential()
Returns a string representing the number in exponential notation.
var n = 123.45678;
application.output(n.toExponential(3));
toExponential(fractionDigits)
Returns a string representing the number in exponential notation.
Number
fractionDigits
An integer specifying the number of digits after the decimal point. Defaults to as many digits as necessary to specify the number.
var n = 123.45678;
application.output(n.toExponential(3));
toFixed()
Returns a string representing the number in fixed-point notation.
var n = 123.45678;
application.output(n.toFixed(3));
toFixed(digits)
Returns a string representing the number in fixed-point notation.
Number
digits
The number of digits to appear after the decimal point. Defaults to 0.
var n = 123.45678;
application.output(n.toFixed(3));
toLocaleString()
Converts the number into a string which is suitable for presentation in the given locale.
var n = 1000000;
application.output(n.toLocaleString());
toPrecision()
Returns a string representing the number to a specified precision in fixed-point or exponential notation.
var n = 123.45678;
application.output(n.toPrecision(5));
toPrecision(precision)
Returns a string representing the number to a specified precision in fixed-point or exponential notation.
Number
precision
An integer specifying the number of significant digits.
var n = 123.45678;
application.output(n.toPrecision(5));
toString()
Returns a string representing the specified Number object.
var n = 7;
application.output(n.toString()); //displays "7"
application.output(n.toString(2)); //displays "111"
toString(radix)
Returns a string representing the specified Number object.
Number
radix
An integer between 2 and 36 specifying the base to use for representing numeric values
var n = 7;
application.output(n.toString()); //displays "7"
application.output(n.toString(2)); //displays "111"