Answers for "change type string to int 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 "change type string to int typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language