Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Forgive me if I'm too noob about this. Recently, I post a question regarding the rounding off two decimal places. Now, How can I get the sum of these numbers but I only need the two decimals w/out rounding it off. This is javascript im working.

Example: 12.876 + 36.278 = 49.154. I need this answer to be... 49.15 only. Or another one: 12.876 + 1 = 13.876. I need this answer to be... 13.87

Here is my code (with round off to two decimal places)

function civ(){
civ1=Number(document.addition.scc.value);
civ2=Number(document.addition.ccc.value);
civ3=Number(document.addition.ncc.value);
civ4=Number(document.addition.vch.value);
civ5=Number(document.addition.mch.value);
civ6=Number(document.addition.nlch.value);
civ7=Number(document.addition.slch.value);
valNum1=Math.round((civ1+civ2+civ3+civ4+civ5+civ6+civ7)*10)/10;
document.addition.civ123.value=valNum1;
}

Super thanks to those who are helping me everyday! :)

share|improve this question
Thanks Bakudan for helping me edit this one ;) – blackcat008 Mar 24 '11 at 7:10

2 Answers

up vote 1 down vote accepted
Math.floor(N * 100) / 100

Will strip off past two decimal places; Math.floor() is essentially Round Down no matter what.

share|improve this answer
Gaaah, You're a genius! Thanks Shad! :> – blackcat008 Mar 24 '11 at 7:16

If myNumber is the number you want to have two decimals...

myNumber.toFixed(2)

should work. Source: http://www.w3schools.com/jsref/jsref_tofixed.asp

share|improve this answer
Thanks Simon! :) – blackcat008 Mar 24 '11 at 8:12
toFixed() doesn't work. W3Schools is the worst reference you can use (check out W3Fools for info on that). – gmoz22 Nov 6 '12 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.