Tag Link | !== Not Equivalent | Category | Symbol |
---|---|---|---|
Type | Symbol | Source Available | Yes |
Support | Preferred | Version | |
Change | Unchanged | Data Source | Any |
Output Type | Boolean | Security | None |
Implementation | Internal | Sets | Lasso 8.5, Lasso 8.0, Lasso 7.0 |
!== performs a check to see if the left parameter is not equivalent to the right parameter. It returns True if either the value or type of the parameters are not equal, or False otherwise.
The !== symbol will not perform any data type casting when comparing two objects.
[If: Left_Parameter !== Right_Parameter]
...
[/If]
<?LassoScript
If: Left_Parameter !== Right_Parameter;
...
/If;
?>
Required Parameters | |
---|---|
Left Parameter | The object to be compared. |
Right Parameter | The object to be compared. |
See the Lasso 8 Language Guide for examples of how to use this tag.