DEVFYI - Developer Resource - FYI

How to convert numbers to strings using JavaScript?

JavaScript Interview Questions and Answers


(Continued from previous question...)

95. How to convert numbers to strings using JavaScript?

You can prepend the number with an empty string
var mystring = ""+myinteger;
or
var mystring = myinteger.toString();
You can specify a base for the conversion,
var myinteger = 14;
var mystring = myinteger.toString(16);

mystring will be "e".

(Continued on next question...)

Other Interview Questions