$e1 == $e2
$e1.isEqual($e2)
Boolean expression that evaluates to true if e1 and e2 evaluate to the same value.
| Name | Type | Description | Mandatory | Default |
|---|---|---|---|---|
| e1 | Number/string/boolean/Buisness object/set | Object to be compared with e2. |
yes | |
| e2 | Number/string/boolean/Business object/set | Object to be compared with e1. |
yes |
Type: Boolean
true, if the result of the evaluation says that the two objects are identical.
1 == 1
Output: true
list(1, 2).isEqual(list(1, 2))
Output: true
list(1, 2).isEqual(list("one", "two"))
Output: false