The zPocketScript String object is a complete implementation of the String object found in JavaScript 1.4, so for a detailled description of what these functions do, refer to the JavaScript documentation. In brief though...
String's are created either implicitly by the string operators " and ', or
explicitly using new String()
.
var commandString="Console.print('hello world')";
commandString();
myArray=[65,66,67];
myString=String.fromCharCode(myArray);
This will result in myString
having the value "ABC".