Addition, subtraction, multiplication, division and creating expression with these in Liquid template language.
Addition through Liquid template language
{{ 50 | plus: 5 }}
Output: 55
Subtraction through Liquid template language
{{ 50 | minus: 5 }}
Output: 45
Multiplication through Liquid template language
{{ 50 | times: 5 }}
Output: 250
Division through Liquid template language
{{ 50 | divided_by: 5 }}
Output: 10
An expression through Liquid template language
{{ 50 | minus: 2 | divided_by: 5 }}
Output: 9.6