leftShift
x << y
leftShift(x, y)
Bitwise left logical shift of a value x by y number of bits.
Try it yourself:
$1 | 4 << 1
| |
$2 | 8 >> 1
|
Bitwise left logical shift of a value x by y number of bits.
Try it yourself:
$1 | 4 << 1
| |
$2 | 8 >> 1
|