Convert Value To String
var my_value = 15;
var my_string = my_value.toString();
Convert String To Int
var my_string = "10";
var my_value = parseInt(my_string);
Feel free to comment if you can add help to this page or point out issues and solutions you have found. I do not provide support on this site, if you need help with a problem head over to stack overflow.