>>> '0'.charCodeAt()
48
>>> '9'.charCodeAt()
57
>>>' '.charCodeAt()
32
let upperCased = ' '
>>> '0' >= upperCased && upperCased <= '9'
trueWhat's going on here?
Space should have a value of 32 while '0' and '9' have a higher value. Why is it that my evaluation here returns true?