--- title: plus description: Liquid filter that adds a number to another number. --- Adds a number to another number.
Input
```liquid {% raw %} {{ 4 | plus: 2 }} {% endraw %} ```Output
```text {{ 4 | plus: 2 }} ```Input
```liquid {% raw %} {{ 16 | plus: 4 }} {% endraw %} ```Output
```text {{ 16 | plus: 4 }} ```Input
```liquid {% raw %} {{ 183.357 | plus: 12 }} {% endraw %} ```Output
```text {{ 183.357 | plus: 12 }} ```