# Less - <

<table><thead><tr><th width="374"> Condition</th><th>Value</th></tr></thead><tbody><tr><td>Released in version:</td><td>1.0.12</td></tr><tr><td>Flutter/Dart link:</td><td><a href="https://dart.dev/guides/language/language-tour#equality-and-relational-operators">https://dart.dev/guides/language/language-tour#equality-and-relational-operators</a></td></tr></tbody></table>

<figure><img src="https://3643579705-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FzuDhZpUY3uOO3NssfE1O%2Fuploads%2FQaoKTe3J92MN5IjoLqYF%2FLess.png?alt=media&#x26;token=1c8f549a-69a2-489e-9f2b-b656d4e08719" alt=""><figcaption><p>Less - Double &#x3C; Int default node</p></figcaption></figure>

The "Less >" node is a logical node where we look for the result if item1 is **less** than item2. If item1 is less than item2, true is returned. If they are equal or item1 is greater than item2, false is returned.

| items                       | result |
| --------------------------- | ------ |
| item1 is greater than item2 | false  |
| item1 is equal to item2     | false  |
| item1 is less than item2    | true   |

The "less" node has multiple variations depending on the type as shown in the table below:

| item1  | item2  | Node                   |
| ------ | ------ | ---------------------- |
| Double | Double | Less - Double < Double |
| Double | Int    | Less - Double < Int    |
| Int    | Int    | Less - Int < Int       |

**Inputs**

<table><thead><tr><th>Input Name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>item1</td><td>true</td><td>Depends on the node</td><td>Condition 1</td></tr><tr><td>item2</td><td>true</td><td>Depends on the node</td><td>Condition 2</td></tr></tbody></table>

**Outputs**

<table><thead><tr><th width="213.57142857142856">Output Name</th><th width="150" data-type="checkbox">Canvas Required</th><th width="150">Type</th><th>Description</th></tr></thead><tbody><tr><td>result</td><td>true</td><td>Bool</td><td>Result from applying the &#x3C; operator to "item1" and "item2" inputs</td></tr></tbody></table>
