I\'m having trouble getting the first function (below) to work correctly. I want it to ask for the age of the user with two possible outcomes. If the user enters the correct
It's returning a string, and parseInt will save you:
... let age = parseInt(age_of_user()); ...