Listing 3: toUnsigned Function function toUnsigned(n) { if (n < 0) return (Math.pow(2, 32) - 1) - (~ n); else return n; }