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?
|
According to Google Calculator According to Javascript (see this JSBin: http://jsbin.com/uzake5/2/edit) it is How do I fix this? |
||||
Taken from this article: The JavaScript Modulo Bug |
|||||||||||||||
|
|
The
|
|||
|
|
|
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. |
|||
|
|
|
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 Anyway here is a tutorial with a "mod" function to return a positive result.
And of course
|
|||
|
|
|
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 %:
|
|||
|
|
(-13) % 64or-(13 % 64)? Personally, I'd put in the parens either way, just for extra clarity. – MatrixFrog Dec 17 '10 at 3:59