(number & number)
是什麼意思?我想讀用JavaScript編寫別人的代碼,並與數字和數字如何在if語句中工作?
if(misc & 0x800) {//...} //0x800 is 2048 when converted to decimal
過來凡var misc = 16400; //or some other number which continuously changes
所以語句來像if(16400 & 2048)
待辦事宜東西 當我console.log()
編這兩個數字我得到了0
。
if語句在數字和數字的情況下如何工作?
的[什麼是位運算符?(http://stackoverflow.com/questions/276706/what-are-bitwise-operators) – Abhitalks