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

According to Google Calculator (-13) % 64 is 51.

According to Javascript (see this JSBin: http://jsbin.com/uzake5/2/edit) it is -13.

How do I fix this?

share|improve this question
This may just be a precedence issue. Do you mean (-13) % 64 or -(13 % 64)? Personally, I'd put in the parens either way, just for extra clarity. – MatrixFrog Dec 17 '10 at 3:59
edited, thanks. – Alec Gorge Dec 17 '10 at 4:05
essentially a duplicate of How does java do modulus calculations with negative numbers? even though this is a javascript question. – GregS Dec 18 '10 at 0:22

5 Answers

up vote 41 down vote accepted
Number.prototype.mod = function(n) {
return ((this%n)+n)%n;
}

Taken from this article: The JavaScript Modulo Bug

share|improve this answer
4  
perfect. i can't accept and answer for 5 more minutes, but this is correct. what a dumb "feature"... – Alec Gorge Dec 17 '10 at 4:06
2  
I don't know that I would call it a "bug". The modulo operation is not very well defined over negative numbers, and different computing environments handle it differently. Wikipedia's article on the modulo operation covers it pretty well. – Daniel Pryden Dec 17 '10 at 4:08
1  
@Ramblingwood, It isn't dumb. Do your research before using words like dumb. RTFM. – dheerosaur Dec 17 '10 at 4:09
It may seems dumb since it is often called 'modulo', suggesting it would behave the same as its mathematics definition (see ℤ/nℤ algebra), which it does not. – etienne Apr 25 at 16:41

The % operator in JavaScript is the remainder operator, not the modulo operator (the main difference being in how negative numbers are treated):

-1 % 8 // -1, not 7

share|improve this answer

Though it isn't behaving as you expected, it doesn't mean that JavaScript is not 'behaving'. It is a choice JavaScript made for its modulo calculation. Because, by definition either answer makes sense.

See this from Wikipedia. You can see on the right how different languages chose the result's sign.

share|improve this answer

Funny that the language refs themselves call it the 'modulus assignment operator'.

MSDN: http://msdn.microsoft.com/en-us/library/ie/9f59bza0(v=vs.94).aspx

Mozilla: https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Operators/Arithmetic_Operators#.25_.28Modulus.29

Anyway here is a tutorial with a "mod" function to return a positive result.

var mod = function (n, m) {
    var remain = n % m;
    return Math.floor(remain >= 0 ? remain : remain + m);
};
mod(5,22)   // 5
mod(25,22)  // 3
mod(-1,22)  // 21
mod(-2,22)  // 20
mod(0,22)   // 0
mod(-1,22)  // 21
mod(-21,22) // 1

And of course

mod(-13,64) // 51
share|improve this answer

The accepted answer makes me a little nervous because it re-uses the % operator. What if Javascript changes the behavior in the future?

Here is a workaround that does not re-use %:

function mod(a, n) {
    return a - (n * Math.floor(a/n));
}

mod(1,64); // 1
mod(63,64); // 63
mod(64,64); // 0
mod(65,64); // 1
mod(0,64); // 0
mod(-1,64); // 63
mod(-13,64); // 51
mod(-63,64); // 1
mod(-64,64); // 0
mod(-65,64); // 63
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.