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.
