Ad
  • Custom User Avatar

    Bitwise operators perform operations on a binary equivalent of decimal numbers bit by bit
    see examples: [3 & 1 == 1 because 0011 & 0001 == 0001] and [2 & 1 == 0 because 0010 & 0001 == 0000]