the author in silhouette
the author's cat in silhouette

Task 4

Make a variable called temperature. Write some code that tells you to put on a coat if it is below 50 degrees.

Please select the temperature

function coatCheck() {
  var temperature;
  var dressAdvice;
  temperature = document.getElementById('temperature').value;
  if (temperature == "") {
      return;
  }

  // All dropdown values are valid numerics so not validating here.
  tempC = parseInt(temperature);
  dressAdvice = ( tempC < 50 ) ? "Best you wear a coat!" : "Pants and vest are fine!";
  document.getElementById('dressSense').innerHTML = dressAdvice;
}