|= (Bitwise OR Assignment)
|
|
<html> <script language="JavaScript"> <!-- // 2 = 00000000000000000000000000000011 // 5 = 00000000000000000000000000000101 // 7 = 00000000000000000000000000000111
x = 2; x |= 5; document.write("x = ",x); -->
</script> </html>
|
|
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
|