This doesnt work as expected.
if ( $var === "TEST ONE" || "TEST TWO" || "TEST THREE") {
do something;
}
It returns true on all strings. Ive tried using the or operator and the == but these
fail as well. Any Ideas?
-Dan
This doesnt work as expected.
if ( $var === "TEST ONE" || "TEST TWO" || "TEST THREE") {
do something;
}
It returns true on all strings. Ive tried using the or operator and the == but these
fail as well. Any Ideas?
-Dan