Left shift assignment (<<=)

The left shift assignment operator (<<=) moves the specified amount of bits to the left and assigns the result to the variable.

Syntax

x <<= y // x = x << y

Examples

Using left shift assignment

let a = 5;
// 00000000000000000000000000000101

a <<= 2; // 20
// 00000000000000000000000000010100

Specifications

Specification
ECMAScript Language Specification
# sec-assignment-operators

Browser compatibility

BCD tables only load in the browser

See also