> ## Documentation Index
> Fetch the complete documentation index at: https://learn.workflow.dog/llms.txt
> Use this file to discover all available pages before exploring further.

# Equals

> Check whether two values are strictly equal.

| Input | Type | Required | Description              |
| ----- | ---- | -------- | ------------------------ |
| **A** | Any  | Yes      | First value to compare.  |
| **B** | Any  | Yes      | Second value to compare. |

| Output     | Type    | Description                                 |
| ---------- | ------- | ------------------------------------------- |
| **Result** | Boolean | `true` when both values are strictly equal. |

Types must match: the number `1` does not equal the text `"1"`. Objects and
lists compare by identity, not by recursively comparing their contents.
