--- id: 56533eb9ac21ba0edf2244b0 title: Compound Assignment With Augmented Subtraction challengeType: 1 videoUrl: 'https://scrimba.com/c/c2Qv7AV' --- ## Description
Like the += operator, -= subtracts a number from a variable. myVar = myVar - 5; will subtract 5 from myVar. This can be rewritten as: myVar -= 5;
## Instructions
Convert the assignments for a, b, and c to use the -= operator.
## Tests
```yml tests: - text: a should equal 5 testString: assert(a === 5, 'a should equal 5'); - text: b should equal -6 testString: assert(b === -6, 'b should equal -6'); - text: c should equal 2 testString: assert(c === 2, 'c should equal 2'); - text: You should use the -= operator for each variable testString: assert(code.match(/-=/g).length === 3, 'You should use the -= operator for each variable'); - text: Do not modify the code above the line testString: assert(/var a = 11;/.test(code) && /var b = 9;/.test(code) && /var c = 3;/.test(code), 'Do not modify the code above the line'); ```
## Challenge Seed
```js var a = 11; var b = 9; var c = 3; // Only modify code below this line a = a - 6; b = b - 15; c = c - 1; ```
### After Test
```js (function(a,b,c){ return "a = " + a + ", b = " + b + ", c = " + c; })(a,b,c); ```
## Solution
```js var a = 11; var b = 9; var c = 3; a -= 6; b -= 15; c -= 1; ```