> For the complete documentation index, see [llms.txt](https://docs.incari.com/incari-studio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.incari.com/incari-studio/master/math/boolean/or.md).

# OR

## Overview

![](https://2631170186-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-MIspkFTPkuGkv4UgQGs-887967055%2Fuploads%2Fgit-blob-d5897deb0a411f7d92000e38a32d9f5ce243bbf6%2Fnode-or.png?alt=media)

The **OR** is a *logical operator* **Node** which takes two or more **Booleans** and returns a single **Boolean**.

The **Node** checks whether or not *any* of the **Inputs** are *true*. If *one* of them is true, then the `Output` **Value** will be true. If, however, *none* of the **Inputs** are *true*, `Output` will be *false*.

| Input 1 | Input 2 | Output |
| ------- | ------- | ------ |
| True    | True    | True   |
| True    | False   | True   |
| False   | True    | True   |
| False   | False   | False  |

## Attributes

| Attribute | Type    | Description                                                  |
| --------- | ------- | ------------------------------------------------------------ |
| `Count`   | **Int** | The number of **Data Input Sockets** the **Node** will have. |

## Inputs

| Input             | Type      | Description                                                           |
| ----------------- | --------- | --------------------------------------------------------------------- |
| *Pulse Input* (►) | **Pulse** | A standard **Input Pulse**, to trigger the execution of the **Node**. |
| `Input [n]`       | **Bool**  | The **Boolean Values** to be checked.                                 |

## Outputs

| Output             | Type      | Description                                                                                                                            |
| ------------------ | --------- | -------------------------------------------------------------------------------------------------------------------------------------- |
| *Pulse Output* (►) | **Pulse** | A standard **Output Pulse**, to move onto the next **Node** along the **Logic Branch**, once this **Node** has finished its execution. |
| `Output`           | **Bool**  | Whether or not any of the **Inputs** are *true*.                                                                                       |
