how convert string to number in typescript code example
Example 1: typescript string to number
var x = "32";
var y: number = +x;//the "+" converts string to number
Example 2: typescript cast string to number
var x = "32";
var y = +x; // y: number