0
Zodiac Teller
This code isn't working, i don't know whyđ.... Can someone help?? https://code.sololearn.com/Wu5x6DzvAK35/?ref=app
2 Answers
+ 1
=== is strict equality
what your testing is a string vs an int
"5" === 5 is false, either compare str vs str, convert input to int, or use abstract comparison ==
0
Jason Edelson thank you so much, its workingđ