+=
, -=
вычитает число из переменной. myVar = myVar - 5;
вычитает 5
из myVar
. Это можно переписать как: myVar -= 5;
a
, b
и c
для использования оператора -=
.
a
should equal 5
testString: assert(a === 5);
- text: b
should equal -6
testString: assert(b === -6);
- text: c
should equal 2
testString: assert(c === 2);
- text: You should use the -=
operator for each variable
testString: assert(code.match(/-=/g).length === 3);
- 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));
```