Answers for "howhow to i convert a string to a number in typescript"

11

typescript string to number

var x = "32";
var y: number = +x;//the "+" converts string to number
Posted by: Guest on August-13-2020

Code answers related to "howhow to i convert a string to a number in typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language