method toString

string toString();

Argumente

Zurückgegebener Wert

This method will convert the bigInt value to a string.
var bigInt = shell.serviceManager.basics.bigInt;
bigInt.value = 1024 * 1024 * 1024;          // bigInt = 1 GB
bigInt.multiply(10);                        // bigInt = 10 GB
var stringValue = bigInt.toString();
Assert(stringValue == "10737418240");
alert("10 GB is " + stringValue + " bytes.");