Logo

Programming-Idioms

History of Idiom 55 > diff from v92 to v93

Edit summary for version 93 by Elvis M:
[JS] sight syntax error

Version 92

2020-04-30, 16:00:37

Version 93

2020-04-30, 16:03:23

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration

Idiom #55 Convert integer to string

Create the string representation s (in radix 10) of integer value i.

Illustration
Extra Keywords
int base radix conversion
Extra Keywords
int base radix conversion
Code
var someNumber = 14545;
var newString = parseInt(someNumber);
console.log(newString);
Code
var someNumber = 14545;
var newString = someNumber.toString()
console.log(newString);
Comments bubble

// output --> "14545"
Comments bubble
// output --> "14545"