Story
As a user, when I click the convert button, the correct temperature should display in the output.
AC
When I click convert,
Then the correct converted temp should display.
DN
write toCelsius function to convert fahrenheit temps to celsius (math in notes)
toCelsius should printToDom the new temperature + ' Celsius' in an H3
write toFahrenheit function to convert celsius temps to fahrenheit (math in notes)
toFahrenheit should printToDom the new temperature + ' Fahrenheit' in an H3
use math.round on toCelsius & toFahrenheit
write determineConverter function with conditionals to call toCelsius when fahrenheit radio dial is selected and toFahrenheit when celsius is selected
Story As a user, when I click the convert button, the correct temperature should display in the output.
AC When I click convert, Then the correct converted temp should display.
DN write toCelsius function to convert fahrenheit temps to celsius (math in notes) toCelsius should printToDom the new temperature + ' Celsius' in an H3 write toFahrenheit function to convert celsius temps to fahrenheit (math in notes) toFahrenheit should printToDom the new temperature + ' Fahrenheit' in an H3 use math.round on toCelsius & toFahrenheit write determineConverter function with conditionals to call toCelsius when fahrenheit radio dial is selected and toFahrenheit when celsius is selected