Skip to content

Commit

Permalink
update === operator with lucee 6 change
Browse files Browse the repository at this point in the history
  • Loading branch information
zspitzer authored Nov 14, 2023
1 parent b585def commit 5ec8cec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ operators | Name | Description |
------------------------ | -----------
EQ | equals | Returns true if operands are equal, e.g. "A" EQ "A" is true |
== | equals | Returns true if operands are equal, e.g. "A" == "A" is true |
=== | identical | Returns true if operands are the same object in memory, false if they are not, (Note this is different than how JavaScript's === operator works. |
=== | identical | Returns true if operands are the same object in memory, false if they are not, (Note this is different than how JavaScript's === operator works. **Lucee 6 === works like javascript, comparing type and value |
NEQ | does not equal | Returns true if operands are not equal, e.g. "A" NEQ "B" is true|
<> | does not equal | Returns true if operands are not equal, e.g. "A" <> "B" is true |
!= | does not equal | Returns true if operands are not equal, e.g. "A" != "B" is true |
Expand Down

0 comments on commit 5ec8cec

Please sign in to comment.