Logo

Programming-Idioms

History of Idiom 55 > diff from v91 to v92

Edit summary for version 92 by Elvis M:
New JS implementation by user [Elvis M]

Version 91

2020-04-30, 04:25:50

Version 92

2020-04-30, 16:00:37

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);
Comments bubble

// output --> "14545"