PDA

View Full Version : Format Currency without decimal


details
04-18-2003, 04:08 PM
How can I write this to round the decimals up and drop them.

document.form.strTotalMonthExpense.value = parseFloat(document.form.strPHHMortgage.value)
+parseFloat(document.form.strTax.value)
+parseFloat(document.form.strHOAFees.value)
+parseFloat(document.form.strManagementFee.value)
+parseFloat(document.form.strPMI.value)
+parseFloat(document.form.strHazardIns.value)

beetle
04-18-2003, 05:40 PM
var num = 1.2;
alert( Math.ceil( num ) ); //alerts 2