convert from int to string in javascript code example
Example 1: tostring js
var num = 15;
var n = num.toString(); /* now */ "15"
Example 2: string to int javascript
var text = '3.14someRandomStuff';
var pointNum = parseFloat(text);
// returns 3.14