How to round a value in Twig

template-enginetwig

I want to round a value in Twig.

Example: I want to display 80.5555 as 80.55.

Can any one suggest me how to do that?

Best Answer

{{ 80.5555 | number_format(2) }}

Here is the documentation number_format