Logo

Programming-Idioms

History of Idiom 55 > diff from v55 to v56

Edit summary for version 56 by programming-idioms.org:
[JS] Variable name is i

Version 55

2017-06-07, 16:00:53

Version 56

2017-09-05, 20:13:55

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 num = 10

var s = num.toString();
Code
var s = i.toString();
Comments bubble
clarfication
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Number/toString
Demo URL
https://jsfiddle.net/kcfh1qbm/
Demo URL
https://jsfiddle.net/p0c1a304/