Re: Finally fixed
Posted by Vimm on .
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)
Interesting, would "0e468022" === "0e284728" (triple equals) not work?
Replies:
Re: Finally fixed | frankenstein -- 1/17/2023 5:32 pm UTC |
Re: Finally fixed | And BR -- 3/3/2023 2:11 am UTC |