JSOperators

/=

Assignment division operator

See more on MDN

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

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