js bitwise shift code example

Example 1: js Bitwise Operators

Javascript Bitwise Operators
& AND statement
| OR statement
~ NOT
^ XOR
<< Left shift
>> Right shift
>>> Zero fill right shift

Example 2: right shift operator js

(A >> B) == Math.floor(A / (2 ** B)) == Math.floor(A / Math.pow(2, B))

Example 3: javascript bitwise flags

var myEnum = {
  left: 1,
  right: 2,
  top: 4,
  bottom: 8
}

var myConfig = myEnum.left | myEnum.right;

if (myConfig & myEnum.right) {
  // right flag is set
}