2018-09-30 23:01:58 +01:00
---
id: 56533eb9ac21ba0edf2244af
title: Compound Assignment With Augmented Addition
challengeType: 1
2019-02-14 12:24:02 -05:00
videoUrl: 'https://scrimba.com/c/cDR6LCb'
2019-07-31 11:32:23 -07:00
forumTopicId: 16661
2021-01-13 03:31:00 +01:00
dashedName: compound-assignment-with-augmented-addition
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
In programming, it is common to use assignments to modify the contents of a variable. Remember that everything to the right of the equals sign is evaluated first, so we can say:
2020-11-27 19:02:05 +01:00
`myVar = myVar + 5;`
to add `5` to `myVar` . Since this is such a common pattern, there are operators which do both a mathematical operation and assignment in one step.
One such operator is the `+=` operator.
2019-05-17 06:20:30 -07:00
```js
var myVar = 1;
myVar += 5;
console.log(myVar); // Returns 6
```
2020-11-27 19:02:05 +01:00
# --instructions--
Convert the assignments for `a` , `b` , and `c` to use the `+=` operator.
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
`a` should equal `15` .
```js
assert(a === 15);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
`b` should equal `26` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
assert(b === 26);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
`c` should equal `19` .
2018-09-30 23:01:58 +01:00
```js
2020-11-27 19:02:05 +01:00
assert(c === 19);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
You should use the `+=` operator for each variable.
```js
assert(code.match(/\+=/g).length === 3);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
You should not modify the code above the specified comment.
```js
assert(
/var a = 3;/.test(code) & &
/var b = 17;/.test(code) & &
/var c = 12;/.test(code)
);
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --after-user-code--
2018-09-30 23:01:58 +01:00
```js
2018-10-20 21:02:47 +03:00
(function(a,b,c){ return "a = " + a + ", b = " + b + ", c = " + c; })(a,b,c);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
var a = 3;
var b = 17;
var c = 12;
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;
```
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
var a = 3;
var b = 17;
var c = 12;
a += 12;
b += 9;
c += 7;
```