show/hide this revision's text 3 edited code example to fix my own error

You can use Math.round() for rounding numbers to a fixed number of decimal placesthe nearest integer.

Math.round(532.24, numberOfDecimals) => 532

Also, you can use parseInt() and parseFloat() to cast a variable to a certain type, in this case integer and floating point.

show/hide this revision's text 2 edited code example to make it more clear

You can use Math.round() for rounding numbers to a fixed number of decimal places.

Math.round(532.24, 2numberOfDecimals)

Also, you can use parseInt() and parseFloat() to cast a variable to a certain type, in this case integer and floating point.

show/hide this revision's text 1

You can use Math.round() for rounding numbers to a fixed number of decimal places.

Math.round(532.24, 2)

Also, you can use parseInt() and parseFloat() to cast a variable to a certain type, in this case integer and floating point.