toString Method
Converts a Number object or variable into a string using the specified radix.
Syntax
number.toString([radix])
Arguments
Remarks
Due to syntax restrictions, the toString method cannot be used on numeric literals. Values must be assigned to variables first. For example, the following code is invalid:
str=1997.toString();
This code must be rewritten:
var yr = 1997
str = yr.toString()
Copyright © 2000 Chili!Soft