Shifts the first item in binary representation the second item of bits to the left, shifting in zeros from the right, and assigns this total to the first item.
Syntax
valueA <<= valueB
Example
Remarks
"valueA <<= valueB" is shorthand for "valueA = valueA << valueB".