Fahrenheit to Celsius

by Pritesh Patel

JavaScript

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