位元非 (~) 運算子對位元執行非運算。您可以嘗試執行以下程式碼來了解如何使用 JavaScript 位元 NOT 運算子。
<!DOCTYPE html> <html> <body> <script> document.write("Bitwise NOT Operator<br>"); // 7 = 00000000000000000000000000000111 document.write(~7); </script> </body> </html>
以上是JavaScript位元非(~)運算子是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!