How do I round a number in javascript? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T17:18:08Zhttp://stackoverflow.com/feeds/question/246193http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/246193/how-do-i-round-a-number-in-javascript3How do I round a number in javascript?Ace2008-10-29T09:14:21Z2009-01-25T22:40:38Z
<p>Hey all. </p>
<p>While working on a project, I came across a js-script created by a former employee that basically creates a report in the form of</p>
<p>Name : Value
Name2 : Value2
etc...</p>
<p>Problem for me though, is that the values can sometimes be floats (with different precision), integers, or even in the form "2.20011E+17"</p>
<p>What I outputted though are pure integers. I don't know a lot of javascript though. </p>
<p>How would I go about writing a method that takes these sometimes-floats and makes them integers?</p>
http://stackoverflow.com/questions/246193/how-do-i-round-a-number-in-javascript/246203#2462038Answer by Aron Rotteveel for How do I round a number in javascript?Aron Rotteveel2008-10-29T09:19:50Z2008-10-29T10:54:20Z<p>You can use <a href="http://www.w3schools.com/js/js_obj_math.asp" rel="nofollow">Math.round()</a> for rounding numbers to the nearest integer.</p>
<pre><code>Math.round(532.24) => 532
</code></pre>
<p>Also, you can use <a href="http://www.w3schools.com/jsref/jsref_parseInt.asp" rel="nofollow">parseInt()</a> and <a href="http://www.w3schools.com/jsref/jsref_parseFloat.asp" rel="nofollow">parseFloat()</a> to cast a variable to a certain type, in this case integer and floating point.</p>
http://stackoverflow.com/questions/246193/how-do-i-round-a-number-in-javascript/246379#2463797Answer by Pablo Cabrera for How do I round a number in javascript?Pablo Cabrera2008-10-29T10:46:39Z2008-10-29T10:46:39Z<p>According to the <a href="http://bclary.com/2004/11/07/#a-4.3.20" rel="nofollow">ECMAScript specification</a>, numbers in JavaScript are represented only by the double-precision 64-bit format IEEE 754. Hence there is not really an integer type in JavaScript.</p>
<p>Regarding the rounding of these numbers, there are a number of ways you can achieve this. The <a href="http://bclary.com/2004/11/07/#a-15.8" rel="nofollow">Math</a> object gives us three rounding methods wich we can use:</p>
<p>The <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/round" rel="nofollow">Math.round()</a> is most commonly used, it returns the value rounded to the nearest integer. Then there is the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/floor" rel="nofollow">Math.floor()</a> wich returns the largest integer less than or equal to a number. Lastly we have the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Math/ceil" rel="nofollow">Math.ceil()</a> function that returns the smallest integer greater than or equal to a number.</p>
<p>There is also the <a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Reference/Global_Objects/Number/toFixed" rel="nofollow">toFixed()</a> that returns a string representing the number using fixed-point notation.</p>
<p>Ps.: There is <strong>no 2nd argument</strong> in the <em>Math.round()</em> method. The <em>toFixed()</em> is <strong>not IE specific</strong>, its <a href="http://bclary.com/2004/11/07/#a-15.7.4" rel="nofollow">within</a> the ECMAScript specification aswell</p>
http://stackoverflow.com/questions/246193/how-do-i-round-a-number-in-javascript/246447#2464471Answer by aemkei for How do I round a number in javascript?aemkei2008-10-29T11:23:00Z2008-10-29T11:23:00Z<p>You hav to convert your input into a number and then round them:</p>
<pre><code>function toInteger(number){
return Math.round( // round to nearest integer
Number(number) // type cast your input
);
};
</code></pre>
<p>Or as a one liner:</p>
<pre><code>function toInt(n){ return Math.round(Number(n)); };
</code></pre>
<p>Testing with different values:</p>
<pre><code>toInteger(2.5); // 3
toInteger(1000); // 1000
toInteger("12345.12345"); // 12345
toInteger("2.20011E+17"); // 220011000000000000
</code></pre>
http://stackoverflow.com/questions/246193/how-do-i-round-a-number-in-javascript/478445#4784450Answer by Rajah for How do I round a number in javascript?Rajah2009-01-25T22:40:38Z2009-01-25T22:40:38Z<p>If you need to round to a certain number of digits use the following function</p>
<pre><code>function roundNumber(number, digits) {
var multiple = Math.pow(10, digits);
var rndedNum = Math.round(number * multiple) / multiple;
return rndedNum;
}
</code></pre>