vote up 4 vote down star

How can I round down a number in Javascript?

math.round() doesn't work because it rounds it to the nearest decimal.

I'm not sure if there is a better way of doing it other than breaking it apart at the decimal point at keeping the first bit. There must be...

flag

74% accept rate
3  
Round towards zero or towards negative infinity? – Daniel Brückner Sep 16 at 23:09

5 Answers

vote up 19 vote down check
Math.floor()

is the answer.

link|flag
Really? I googled like loads of stuff. And it didn't come up. Strange to have such a simple answer that google can't find. – Ben Shelock Sep 16 at 23:17
It's also the slowest method; if you need to perform a lot of these, use the bitwise | operator (see my post). – geraldalewis Sep 16 at 23:18
The | operator won't work on numbers larger than 2147483647. – Robert L Sep 16 at 23:47
1  
@Ben Shelock: Google can certainly find it: google.com/search?q=javascript+floor - it's just a classic case of knowing what to look for. :) – Greg Hewgill Sep 16 at 23:49
@Greg: Yeah, once you know what you're looking for, it's easy to find! – masher Sep 18 at 4:41
show 1 more comment
vote up 1 vote down

So you want to truncate a double?

One way is to assign it to an int (or long).

double d = 12.3456;
int i = d; //i = 12
link|flag
Double d :) – Nissan Fan Sep 16 at 23:15
5  
What javascript are you using ;) – geraldalewis Sep 16 at 23:16
oops, fell into java mode... :) – masher Sep 18 at 4:42
Suggest you delete this answer as it's not relevant. – Jason S Sep 18 at 14:54
vote up 0 vote down
Math.floor(1+7/8)
link|flag
1+7/8 = 1 - Not much need for Math.floor() there :) – Jason Berry Sep 16 at 23:16
2  
Actually it's (7/8)+1 which is not 1. Thank you 3rd grade algebra – d03boy Sep 16 at 23:24
Umm, please actually try this in a javascript program. I did. Display (1 + 7/8) and you will see 1.875. Math.round(...) is 2, Math.floor(...) is 1. What are you guys talking about? – DigitalRoss Sep 16 at 23:48
1  
Or open the Firefox Error Console. Or Firebug. It isn't hard to try. I tried it. 1 + 7/8 is 1.875 in js. Did you possibly forget that all math in js is in floating point? – DigitalRoss Sep 16 at 23:53
1  
It's probably easy to forget that javascript does everything in floating point. In many other languages 1+7/8 is 1, but in js it really is 1.875. – DigitalRoss Sep 17 at 1:05
vote up 1 vote down

Math.floor() will work, but it's very slow compared to using a bitwise OR operation:

var rounded = 34.923 | 0;
alert( rounded );
//alerts "34"

EDIT Math.floor() is not slower than using the | operator. Thanks to Jason S for checking my work.

Here's the code I used to test:

var a = [];
var time = new Date().getTime();
for( i = 0; i < 100000; i++ ) {
    //a.push( Math.random() * 100000  | 0 );
    a.push( Math.floor( Math.random() * 100000 ) );
}
var elapsed = new Date().getTime() - time;
alert( "elapsed time: " + elapsed );
link|flag
2  
??? I just ran jsdb (www.jsdb.org) which uses Spidermonkey 1.7, and ran a loop to sum up the floor'ed value of x[i] on an array of 100000 floating point numbers, first with Math.floor(), then with bitwise or as you suggest. It took approx the same time, 125 msec. – Jason S Sep 18 at 14:49
2  
Just repeated the test with 500000 floating point numbers, it took approx the same time, approx 625 msec. – Jason S Sep 18 at 14:51
2  
So I don't see how 1.25usec is very slow. – Jason S Sep 18 at 14:53
Can't argue with your data :) I think I may be have confused JS's implementation with ActionScript's (built on EcmaScript; obviously implementation differs). Thanks for checking my work! – geraldalewis Sep 27 at 3:45
@Jason S: I don't think .5s is slow to do things, but it doesn't mean you shouldn't aim to be as quick as possible if you have the opportunity. – Dominic Bou-Samra Oct 2 at 2:40
vote up 5 vote down

Round towards negative infinity - Math.Floor()

+3.5 => +3.0
-3.5 => -4.0

Round towards zero - usually called Truncate(), but not supported by JavaScript. Can be emulated by using Math.Ceil() for negative numbers and Math.Floor() for positive numbers.

+3.5 => +3.0 using Math.Floor()
-3.5 => -3.0 using Math.Ceil()
link|flag

Your Answer

Get an OpenID
or

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