WLJS LogoWLJS Notebook

BitOr

BitOr[n1, n2, ...] gives the bitwise OR of the integers ni.

Examples

Bitwise OR of two integers:

BitOr[5, 3]
(* 7 *)

Multiple operands:

BitOr[1, 2, 4]
(* 7 *)

Please visit the official Wolfram Language Reference for more details.

On this page