Procedo a subir el código :
<meta charset="UTF-8">
<h1>PROGRAMA CALCULAR IMC</h1>
<script>
function saltarLinea() {
document.write("<br>")
document.write("<br>")
document.write("<br>")
}
function imprimir(frase) {
document.write(frase)
saltarLinea()
}
function calcularIMC(peso,altura) {
return(peso/(altura*altura))
}
nombre = prompt("Ingrese su nombre")
pesoInformado = prompt(nombre + " ingrese su peso ")
alturaInformado = prompt(nombre + " ingrese su altura (m.cm)")
imcCalculado = calcularIMC(pesoInformado,alturaInformado)
imprimir (nombre+" su imc calculado es : "+ imcCalculado)
</script>