Rounding parameters?

if i have a value of 0.05534564, what is the parameter to round it to 0.06? Im at a loss on how the values in the formatter affects the actual value. I know its simple, but can’t find an answer.

Hey Baub,

0.05534564.round(2)

The precision (2) specifies the number of decimals to show.

–Ken

1 Like