0
why is'int this working?
5 Respuestas
+ 3
= assignment
== comparison
+ 2
Kevin Star This is the correct answer. When you're validating the answers with x = NUM your actually assigning NUM to x. I'd imagine it's evaluating to true because it successfully assigned the number. You need the comparison operator (== or ===)
+ 1
thank you!
0
What exactly is the issue?