I am not sure if I am doing something wrong, but I can't seem to have this simple javascript to work:
var a = 0;
a |= (1 << 31);
alert(a);
a |= (1 << 30);
alert(a);
you can see it here http://jsfiddle.net/qPEVk/
shoudln't it 3221225472 ?
thanks,
Joe