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

# False

# \$false

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

## Input

* No parameters required

## Output

* The boolean value `false`

## Examples

### Basic Usage

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

Result: `false`

### Using in Conditional

```json theme={null}
{
  "$ifelse": [
    {
      "$gt": [
        {
          "$input": "score"
        },
        90
      ]
    },
    {
      "$true": []
    },
    {
      "$false": []
    }
  ]
}
```

Result: `true` if score is greater than 90, otherwise `false`
