Challenge Assignment With Times Equals - thelastmile/FreeCodeCamp GitHub Wiki
Challenge Assignment with Times Equals
The *= operator
multiplies a variable by a number.
myVar = myVar * 5;
will multiply myVar
by 5
. This can be rewritten as:
myVar *= 5;