> ## 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.

# Null

# \$null

The `$null` operator returns the null value.

## Input

* No parameters required

## Output

* The null value

## Examples

### Basic Usage

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

Result: `null`

### Using in Conditional

```json theme={null}
{
  "$ifelse": [
    {
      "$eq": [
        {
          "$input": "status"
        },
        "pending"
      ]
    },
    {
      "$input": "result"
    },
    {
      "$null": []
    }
  ]
}
```

Result: The result field if status is "pending", otherwise `null`
