Challenge 3: Is it Freezing?!
32 degrees Fahrenheit is the freezing point of water.
Write a function temperatureCheck () that takes in a specific temperature as an input (e.g. 75).
If the temperature is less than 32, return the Boolean value true. Otherwise it should return false.
Here is an example of how you can test your code with various inputs:
console.log(temperatureCheck(56))
console.log(temperatureCheck(23))
And here is the output you should get after you write proper code for this challenge:
false true