Converts an object to a string.
JSV_toString(expO)
Returns a string representing the specified object.
The toString function uses the following argument.
Argument | Description |
expO | The object that is to be converted into a string. |
Deprecated. Use the
toString
method of Object
that returns a string representation of the specified object.
n/a
The following lines of code
var testNumber = 12.34,
testString = JSV_toString(testNumber);
document.write( "The " +
typeof(testNumber) + " " +
testString.bold() +
" has been converted to a " +
typeof(testString) );
produce
Copyright © 1998-2000 Roaring Fork Software. All rights reserved.