JavaScript » Bitwise » &

This is the bitwise AND operator which returns a 1 for each bit position where the corresponding bits of both its operands are 1.

Examples

Code:
result = a & b;
Explanation:

This code would return 9 (1001)