How to convert numbers to strings using JavaScript?

Q

How to convert numbers to strings using JavaScript?

✍: Guest

A

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".

2009-02-25, 4157👍, 0💬