function underNinety(num) {
//checking if num is less than ninety
//returns true if it is, false otherwise
//solution below
}
This is the question and this is my response.
function underNinety(num) {
if (num < 90) {
return true;
}
else {
return false;
}
}
var num = 50;
What mistake am I making? Thank you