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

In JavaScript, how do I get:

  1. the whole number of times a given integer goes into another?
  2. the remainder?
share|improve this question

4 Answers

up vote 172 down vote accepted

For some number y and some divisor x compute the division (div) and remainder (rem) as:

var div = Math.floor(y/x);
var rem = y % x;
share|improve this answer
17  
% works on floats in JavaScript (this differs from many other languages), which is perhaps not desired: 3.5 % 2 evaluates to 1.5. Make sure to handle (parseInt, floor, etc.) as required – user166390 Nov 19 '10 at 19:09
@pst - good to know- – Yarin Nov 19 '10 at 19:11
17  
@Yarin - Just be aware that Math.floor() will give the wrong result if the result of the division is a negative number. See my answer for a couple of possible alternatives. – user113716 Nov 19 '10 at 19:19
4  
@patrick You mean it will give the correct result and not a wrong result like C/C++ does, for example. Unless we've overriden maths with processor bugs. – julkiewicz May 6 '11 at 22:29
13  
@julkiewicz: I meant the wrong result with respect to the result desired in the question. If y=-9; x=2 the desired value of div would be -4, but Math.floor would give -5. – user113716 May 14 '11 at 16:35

I'm no expert in bitwise operators, but here's another way to get the whole number:

var num = ~~(a / b);

This will work property for negative numbers as well, while Math.floor() will round in the wrong direction.

This seems correct as well:

var num = (a / b) >> 0;
share|improve this answer
good to know as well- thanks – Yarin Nov 19 '10 at 19:30
16  
Another one, whose purpose I just spent the last 20 minutes trying to figure out, is apparently a/b | 0 – BlueRaja - Danny Pflughoeft Mar 25 '11 at 22:42
1  
@down-voter: Can you please explain where this answer is not correct? As I stated, I'm no expert in bitwise operators, so if something is wrong, please let me know. – user113716 Sep 12 '11 at 20:16
You saved my day! – Mosty Mostacho Mar 27 '12 at 4:50
2  
@user113716 @BlueRaja Bitwise operations makes sense only on integer-types and JS (of course) knows that. ~~int, int | 0 and int >> 0 doesn't modify initial argument, but make interpreter pass integral part to operator. – elmigranto Jul 15 '12 at 15:15
show 1 more comment
var remainder = x % y;
return (x - remainder) / y;
share|improve this answer

One intuitive way to compute the division, without bitwise operators, for both positive and negative numbers (e.g. y=-9; x=2; => div=-4) is:

if (x != 0) {

    if ((y/x) >= 0) {
        var div = Math.floor(y/x);
    } 
    else {
        var div = Math.floor(y/x)+1;
    }

    var rem = y % x;
}
share|improve this answer

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.