CODE
<html>
<head>
<title>Javascript Quiz 1</title>
</head>
<body>
<script language="Javascript" type="text/javascript">
// Ask the user which temperature, in centigrade, that he slash she would like to convert to fahrenheit.
var degCentigrade = prompt("Enter the degrees in centigrade.",50);
// Define the fahrenheit variable, and do the math.
var degFahrenheit = 9 / 5 * degCentegrade + 32;
// Display the user what value he slash she entered for degCentigrade and give him slash her the answer.
document.write(degCentigrade + "xNN centigrade is " + degFahrenheit + "xNN fahrenheit.");
</script>
</body>
</html>
<head>
<title>Javascript Quiz 1</title>
</head>
<body>
<script language="Javascript" type="text/javascript">
// Ask the user which temperature, in centigrade, that he slash she would like to convert to fahrenheit.
var degCentigrade = prompt("Enter the degrees in centigrade.",50);
// Define the fahrenheit variable, and do the math.
var degFahrenheit = 9 / 5 * degCentegrade + 32;
// Display the user what value he slash she entered for degCentigrade and give him slash her the answer.
document.write(degCentigrade + "xNN centigrade is " + degFahrenheit + "xNN fahrenheit.");
</script>
</body>
</html>
There is an detailed answer guide in the back of the book, but the only difference I see between his code and my code is the name of the variables used. Thanks a lot for any information, chances are this is just some stupid mistake.