Oliver Eyton-Williams f1c9b08cf3 fix(curriculum): add isHidden: false to challenges
This includes certificates (where it does nothing), but does not
include any translations.
2020-05-25 16:25:19 +05:30

2.0 KiB

id, title, challengeType, isHidden, videoUrl, forumTopicId
id title challengeType isHidden videoUrl forumTopicId
56533eb9ac21ba0edf2244af Compound Assignment With Augmented Addition 1 false https://scrimba.com/c/cDR6LCb 16661

Description

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: 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.
var myVar = 1;
myVar += 5;
console.log(myVar); // Returns 6

Instructions

Convert the assignments for a, b, and c to use the += operator.

Tests

tests:
  - text: <code>a</code> should equal <code>15</code>.
    testString: assert(a === 15);
  - text: <code>b</code> should equal <code>26</code>.
    testString: assert(b === 26);
  - text: <code>c</code> should equal <code>19</code>.
    testString: assert(c === 19);
  - text: You should use the <code>+=</code> operator for each variable.
    testString: assert(code.match(/\+=/g).length === 3);
  - text: You should not modify the code above the specified comment.
    testString: assert(/var a = 3;/.test(code) && /var b = 17;/.test(code) && /var c = 12;/.test(code));

Challenge Seed

var a = 3;
var b = 17;
var c = 12;

// Only change code below this line
a = a + 12;
b = 9 + b;
c = c + 7;

After Test

(function(a,b,c){ return "a = " + a + ", b = " + b + ", c = " + c; })(a,b,c);

Solution

var a = 3;
var b = 17;
var c = 12;

a += 12;
b += 9;
c += 7;