根据Google Calculator (-13) %64是51。
(-13) %64
51
根据Javascript(请参阅此JSBin),它是-13。
-13
我该如何解决?
Number.prototype.mod = function(n) { return ((this%n)+n)%n; };