To check, I wrote a simple function:
function test() {
var val = -1878897367 & 0xfffffff0;
console.log(val);
val = -2146277048 & 0xfffffff0;
console.log(val);
}
Result of working on a desktop computer:
-1878897376
-2146277056
The result of work on phones (Phonegap on Android 4.2 or 2.3.4):
268586281
1206600
Why is this happening?
source
share