From 5ec8cecd093311b5a97988784b0d65ad9d2123c1 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Tue, 14 Nov 2023 10:55:55 +0100 Subject: [PATCH] update === operator with lucee 6 change --- .../11.developing-with-lucee-server/03.operators/page.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/04.guides/11.developing-with-lucee-server/03.operators/page.md b/docs/04.guides/11.developing-with-lucee-server/03.operators/page.md index 65a193bf1..ac5af8f15 100644 --- a/docs/04.guides/11.developing-with-lucee-server/03.operators/page.md +++ b/docs/04.guides/11.developing-with-lucee-server/03.operators/page.md @@ -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 |