how to cast to int javascript code example
Example 1: how to convert string to int js
let string = "1";
let num = parseInt(string);
Example 2: Javascript string to int
var myInt = parseInt("10.256");
var myFloat = parseFloat("10.256");
Example 3: converst strig in number in js
const numberInString = "20";
console.log(typeof(numberInString))
const numInNum = parseInt(numberInString)
console.log(typeof(numInNum))
Example 4: javascript type casting int
Number("3.14")
false.toString()
String(false)
Example 5: string to number javascript
new Number(valeur);
var a = new Number('123');
var b = Number('123');
a instanceof Number;
b instanceof Number;