You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Important) Here these variable names do not represent the value of them. The names seem to imply they are booleans (either true or false) but are actually numbers. Instead of doing the comparison against the numbers in the if block, do the comparison in the variable declaration. This way they will be booleans and in the if block you can just check against true or false to make the same comparison only it will be much more readable.
The text was updated successfully, but these errors were encountered:
(Important) Here these variable names do not represent the value of them. The names seem to imply they are booleans (either
true
orfalse
) but are actually numbers. Instead of doing the comparison against the numbers in theif
block, do the comparison in the variable declaration. This way they will be booleans and in theif
block you can just check againsttrue
orfalse
to make the same comparison only it will be much more readable.The text was updated successfully, but these errors were encountered: