La funcion prompt() permite interactuar con el usuario de forma muy sencilla, ya va dando forma el programa
<body>
<h2>IMC</h2>
<script>
const calculateImc = (name, weight, height ) =>{
let imc = (weight/(height * height))
let imcFixed = imc.toFixed(2);
document.write(`De acuerdo a los datos suministrados, el IMC de ${name} es ${imcFixed}<br>`);
};
calculateImc(name = prompt("Ingrese el nombre"), prompt(name + " Ingrese Peso"), prompt(name + " Ingrese estatura en metros"))
</script>
</body>