Answers for "type cast from string to int in typescript"

9

string to int typescript

Number('123') //123
Number('xxx') //NaN
Posted by: Guest on February-03-2021
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 "type cast from string to int in typescript"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language