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".
No comments:
Post a Comment