JSOperators

*=

Assignment multiplication operator

See more on MDN

This operator takes a variable and in a concise way, assigns another value to it while multiplying the original value with the new value.

let a = 1;
a *= 4; // a now equals 4