| Syntax | (iserror expression) |
|---|---|
| Arguments | expression: The expression that you want run and see if it is an error. |
| Returns | conditional: True if it does contain an error, Nil otherwise. |
| Category | error |
| Description | Returns if the expression evaluated to an error or not. |
(iserror (divide 10 0))
Returns True. Return to Functions list