EN
TypeScript - convert string to number
0
points
In this article, we would like to show you how to convert string to number in TypeScript.
2. Number function examples
2.1. String with integer number example
const text: string = '123';
const number = Number(text);
console.log(number === 123); // true
2.2. String with float number example
const text: string = '3.13';
const number = Number(text);
console.log(number === 3.13); // true