Fahrenheit to Celsius
JavaScript
var f = window.prompt("Please enter Fahrenheit temreture: ");
function convert(){
var c;
return c =((f-32)*5/9);
}
document.write(convert());
var f = window.prompt("Please enter Fahrenheit temreture: ");
function convert(){
var c;
return c =((f-32)*5/9);
}
document.write(convert());