Number.prototype.mod = function (n) {"use strict"; return ((this % n) + n) % n;};
Taken from this article: The JavaScript Modulo Bug
Number.prototype.mod = function (n) {"use strict"; return ((this % n) + n) % n;};
Taken from this article: The JavaScript Modulo Bug