Fonction parseFloat()
La fonction parseFloat() permet de convertir une chaîne en nombre flottant (à virgule).
let nb1= "3.0";
let nb2= "3.33"
document.write(parseFloat(nb1) + '<br>');
document.write(parseFloat(nb2));
Affichage
3
3.33
Voir aussi : Number(), parseInt(), String