Math.round: {{ n1 }} => {{ Math.round(n1)}}, {{ n2 }} => {{ Math.round(n2)}}

Math.floor: {{ n1 }} => {{ Math.floor(n1)}}, {{ n2 }} => {{ Math.floor(n2)}}

Math.ceil: {{ n1 }} => {{ Math.ceil(n1)}}, {{ n2 }} => {{ Math.ceil(n2)}}

Math.trunc: {{ n1 }} => {{ Math.trunc(n1)}}, {{ n2 }} => {{ Math.trunc(n2)}}

~~a: {{ n1 }} => {{~~(n1)}}, {{ n2 }} => {{~~(n2)}}

a | 0: {{ n1 }} => {{(n1 | 0)}}, {{ n2 }} => {{(n2 | 0)}}

a >> 0: {{ n1 }} => {{(n1 >> 0)}}, {{ n2 }} => {{(n2 >> 0)}}