0 votes
in JavaScript by
What are the bitwise operators available in javascript?

1 Answer

0 votes
by

Below are the list of bitwise logical operators used in JavaScript

  1. Bitwise AND ( & )
  2. Bitwise OR ( | )
  3. Bitwise XOR ( ^ )
  4. Bitwise NOT ( ~ )
  5. Left Shift ( << )
  6. Sign Propagating Right Shift ( >> )
  7. Zero fill Right Shift ( >>> )
...