how to cut off decimals in javascript

JavaScript
var twoPlacedFloat = parseFloat(yourString).toFixed(2)Math.floor(5.9) //5
Math.ceil(5.1) //6
Math.round(9.5) //10
5.3 >> 0 //5 (same as Math.floor)
7.9 >> 0 //7 (same as Math.floor) float_num.toFixed(2);function png(){
    return Math.trunc(Math.random() * 10);
}
//Removes the decimal without roundingstring.split(".")[0];
Source

Also in JavaScript: