Re: Finally fixed
Posted by frankenstein on .
Yea, afaik, triple equals doesn't force implicit type conversion on either side.
That works too actually. Both variables are strings but the triple equals seems to disable the mathematical conversion.
"0e468022" == "0e284728" (TRUE)
"0e468022" === "0e284728" (FALSE)
"0e468022" == "0e284728" (TRUE)
"0e468022" === "0e284728" (FALSE)
Replies:
Re: Finally fixed | And BR -- 3/3/2023 2:11 am UTC |