Skip to content

Commit 874f7aa

Browse files
authored
LDEV-5806 document === fix changes in 6.2.3.34
1 parent 0d38287 commit 874f7aa

File tree

1 file changed

+1
-1
lines changed
  • docs/04.guides/11.developing-with-lucee-server/03.operators

1 file changed

+1
-1
lines changed

docs/04.guides/11.developing-with-lucee-server/03.operators/page.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ description: Mathematical, Logical, Ternary, Comparison, String and Elvis Operat
104104
| --------- | -------------- | ----------- |
105105
| EQ | equals | Returns true if operands are equal, e.g. `"A" EQ "A"` is true |
106106
| == | equals | Returns true if operands are equal, e.g. `"A" == "A"` is true |
107-
| === | 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** |
107+
| === | 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, however, prior to 6.2.3.34, it was senstive to the underlying java types [LDEV-5806](https://luceeserver.atlassian.net/browse/LDEV-5806) ** |
108108
| NEQ | does not equal | Returns true if operands are not equal, e.g. `"A" NEQ "B"` is true |
109109
| \<\> | does not equal | Returns true if operands are not equal, e.g. `"A" <> "B"` is true |
110110
| != | does not equal | Returns true if operands are not equal, e.g. `"A" != "B"` is true |

0 commit comments

Comments
 (0)