Compound Assignment With Augmented Multiplication, freeCodeCamp Basic Javascript
Lesson Summary
In this challenge we learn compound assignment with augmented multiplication. For example (myVar = myVar * 5) can be rewritten as (myVar *= 5) and it means the same exact thing.