Adding Decimal place into number with javascript September 20, 2023 by Tarik function insertDecimal(num) { return (num / 100).toFixed(2); }