As a user when I click the convert button something should display in the output.
AC
When I click the convert button
Then I should see a console.log of the temp in the input
And I should see a console.log of which radio button I clicked
And I should see the temp inputted display in the output box
Development
Create input with id tempInput
Create radio buttons
Create div with id tempOutput
Create Convert button with id convertBtn
Create event listener on the button that runs a function called determineConverter
determineConverter function should console.log value in the input. Should console.log either C or F depending on which radio button is selected, print the tempInput value to the output div
Write a printToDom function - 2 inputs - divId and textToPrint
User Story
As a user when I click the convert button something should display in the output.
AC
When I click the convert button Then I should see a console.log of the temp in the input And I should see a console.log of which radio button I clicked And I should see the temp inputted display in the output box
Development
tempInput
tempOutput
convertBtn
determineConverter
determineConverter
function should console.log value in the input. Should console.log either C or F depending on which radio button is selected, print the tempInput value to the output divprintToDom
function - 2 inputs - divId and textToPrint