Number.toString() MethodNameNumber.toString() Method---convert a number to a stringAvailabilityNavigator 3.0 Synopsis
number.toString([radix]) Arguments
ReturnsThe string representation of the number in the specified radix. DescriptionThe toString() method of the Number object converts a Number to a string, using the specified radix or base. If no radix is specified, base 10 is used. UsageBecause JavaScript automatically converts numeric values to temporary Number objects when needed, you can use the toString() method on numbers, even though they are primitive types rather than true JavaScript objects:
n = 123; s = n.toString(16); Note, however, that because of syntactic restrictions in the language, you cannot use the toString() method on numeric literals. You must assign them to variables first; i.e., you cannot rewrite the two lines of code above as:
s = 123.toString(16); |
|