> ## Documentation Index
> Fetch the complete documentation index at: https://docs.metrics-man.com/llms.txt
> Use this file to discover all available pages before exploring further.

# True

# \$true

The `$true` operator returns the boolean value `true`.

## Input

* No parameters required

## Output

* The boolean value `true`

## Examples

### Basic Usage

```json theme={null}
{
  "$true": []
}
```

Result: `true`

### Using in Conditional

```json theme={null}
{
  "$ifelse": [
    {
      "$eq": [
        {
          "$input": "status"
        },
        "active"
      ]
    },
    {
      "$true": []
    },
    {
      "$false": []
    }
  ]
}
```

Result: `true` if status is "active", otherwise `false`
