javascript:var a=1000;var b=1000;var c=a^b;alert(c);void(0)
结果为0而 
javascript:var a=1111;var b=1000;var c=a^b;alert(c);void(0)
结果却为1983  怎样能得到111?