Answers for "convert from string to number typescript"

2

typescript cast string to number

var x = "32";
var y = +x; // y: number
Posted by: Guest on March-04-2020

Code answers related to "convert from string to number typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language