mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-01-13 09:02:23 -05:00
474 B
474 B
title
| title |
|---|
| Compound Assignment With Augmented Subtraction |
Compound Assignment With Augmented Subtraction
Computers read from left to right. So, using the '-=' operator means that the variable is subtracted by the number on the right, then the variable is assigned to the difference. Like so:
var b = 10;
b -= 4; // Now, 'b' is 6