JSOperators

+=

Assignment addition operator

See more on MDN

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

let a = 1;
a += 4; // a now equals 5