Logo

Programming-Idioms

History of Idiom 55 > diff from v87 to v88

Edit summary for version 88 by Johnny5:
New Java implementation by user [Johnny5]

Version 87

2020-03-16, 17:11:49

Version 88

2020-04-29, 09:00:06

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 s = "" + i;
Comments bubble
Probably not the most performant, but one of the shortest.