<meta charset = "UTF-8">
<h1>What your IMC</h1>
<h2 id="demo"></h2>
<script>
function toBreakLine(){
document.write("<br><br>")
}
function toShowMessage(message) {
//document.write(message)
document.querySelector('#demo').
innerHTML = message
toBreakLine()
}
function toCalcImc(peso, altura){
return peso / altura**altura
}
const name = prompt('What is your name?')
const weight = prompt(`${name}, whats your weight?`)
const height = prompt(`${name}, whats your height?`)
const imc = toCalcImc(weight, height)
toShowMessage(`${name}, your imc is
${imc.toFixed(2)}`)
</script>