Posts by Lucas Alves • 13 points
1 post
-
-2
votes2
answers71
viewsQ: I would like to know how to put this form to read only numbers like this [1,70] and [66.2]
function CalcularIMC(){ let formulario = document.getElementById("formulario"); let altura = +formulario.altura.value; let peso = +formulario.peso.value; var imc = (altura * altura)/peso;…
javascriptasked Lucas Alves 13