how to convert int in 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: string to int javascript
var text = '42px';
var integer = parseInt(text, 10);
let myNumber = Number("5.25");
Example 4: convert string to integer javascript
const stringPrices = ['5.47', '3.12', '8.00', '5.63', '10.70'];
let priceTotal = 0;
stringPrices.forEach(stringPrice => {
price = parseFloat(stringPrice);
priceTotal += price;
});