woodymaddox / Temperature-converter

0 stars 0 forks source link

Research equations to convert to C and F #2

Open woodymaddox opened 5 years ago

woodymaddox commented 5 years ago

User Story

As a developer, in order to build this application, I need the equatiosn for converting C fo F and F to C.

AC

When i view this issue I should see the required equations.

Development

Determine how to convert from F to C determine how to convert from C to F

woodymaddox commented 5 years ago

Example - Fahrenheit to Celcius / When the input field receives input, convert the value from fahrenheit to celsius / function temperatureConverter(valNum) { valNum = parseFloat(valNum); document.getElementById("outputCelsius").innerHTML = (valNum-32) / 1.8; }