Data Type JavaScript DHTML



A Simple Page

function inputFah(){
    var fah = 100;
    ansCel = doCelCalc(fah);
    alert(fah + " Degrees Fahrenheit is " + ansCel + " Degrees Celsius");
}
function doCelCalc(fah){
    var ans = ((Number(fah) - 32) / 1.8);
    return (ans);
}