Can't display number in a textbox

Hello Ron,

In javascript there is a function that turns numbers to strings called .toString(), it works like this:

var num = 15;
var n = num.toString();
console.log(typeof num, typeof n); //output: number, string

Hopefully this helps,
Majd