JavaScript Built In Operator *=
View Source...
This is an operator designated for assigment duty and multiplication. This operator is a combination of both jobs and multiplies variables as well as assigns values to variables in JavaScript. An example of a*=b is the same as a=a*b.