Link Search Menu Expand Document

String.ValueOf Method

Explanation Returns the value stored in the String object.
Call format var s = str.ValueOf( )
Return value Value of String object
Arguments None
Exception None
Example of use
var str = new String("ABCDEF");
print(str.ValueOf(), "\n");
    
Related item