Challenge Assignment With Divided By Equals - ashish9342/FreeCodeCamp GitHub Wiki

Challenge Assignment with Divided by Equals

The /= operator divides a variable by another number.

myVar = myVar / 5;

Will divide myVar by 5. This can be rewritten as:

myVar /= 5;
⚠️ **GitHub.com Fallback** ⚠️