convert integer to string value to decimal in typescrit code example
Example: typescript string to number
var x = "32";
var y: number = +x;//the "+" converts string to number
var x = "32";
var y: number = +x;//the "+" converts string to number