Logo

Programming-Idioms

History of Idiom 55 > diff from v85 to v86

Edit summary for version 86 by mcxzx:
New JS implementation by user [mcxzx]

Version 85

2020-03-09, 12:00:30

Version 86

2020-03-10, 18:58: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 a=123,b="";
b=a+"";
Comments bubble
a:=the number
b:=the string