Hey all! I'm new to CodeNewbie but excited to be here! I'm a Python dev learning JavaScript in my spare time and was wondering how you convert a number to a string in JavaScript?
I'm sure there's a simple solution I'm missing, but any help would be appreciated!
Top comments (4)
Simple as
num.toString();
Sweet, thanks!
String(x) should do it!
Appreciate the help!