The latest update to CF2018 server is patch 15. P...
# cfml-general
t
The latest update to CF2018 server is patch 15. Part of this release is introducing Strict Equality/In-Equality. Will the implementation of this impact the use of EQ/NEQ? Will code have to be refactored?
a
Different operators.
eq
and
neq
are equiv to
==
and
!=
respectively.
===
and
!==
are different operators. Also note it's pretty easy to write some code to test that 😉 (https://trycf.com/gist/2ee4ff6f9ed02bcbe77cfeaa6b706540/acf2021?theme=monokai)