From 00914be3e8a845add484652503da2dd8e5aced9b Mon Sep 17 00:00:00 2001 From: David Carlson <41599190+Writhyn@users.noreply.github.com> Date: Fri, 8 Nov 2019 22:03:44 -0500 Subject: [PATCH] Removed text about prior knowledge (#37722) This section is now after Basic Javascript, but the challenge indicates that "function" and "return" are unknown at this point. Simply a product of an (apparent?) move. --- .../convert-celsius-to-fahrenheit.english.md | 1 - 1 file changed, 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.english.md index dc3ad066f8..9c6303c989 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/convert-celsius-to-fahrenheit.english.md @@ -10,7 +10,6 @@ forumTopicId: 16806
The algorithm to convert from Celsius to Fahrenheit is the temperature in Celsius times 9/5, plus 32. You are given a variable celsius representing a temperature in Celsius. Use the variable fahrenheit already defined and assign it the Fahrenheit temperature equivalent to the given Celsius temperature. Use the algorithm mentioned above to help convert the Celsius temperature to Fahrenheit. -Don't worry too much about the function and return statements as they will be covered in future challenges. For now, only use operators that you have already learned.
## Instructions