2018-09-30 23:01:58 +01:00
|
|
|
---
|
|
|
|
id: 56533eb9ac21ba0edf2244b1
|
|
|
|
title: Compound Assignment With Augmented Multiplication
|
|
|
|
challengeType: 1
|
2019-02-14 12:24:02 -05:00
|
|
|
videoUrl: 'https://scrimba.com/c/c83vrfa'
|
2019-07-31 11:32:23 -07:00
|
|
|
forumTopicId: 16662
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: compound-assignment-with-augmented-multiplication
|
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
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
The `*=` operator multiplies a variable by a number.
|
|
|
|
|
|
|
|
`myVar = myVar * 5;`
|
|
|
|
|
|
|
|
will multiply `myVar` by `5`. This can be rewritten as:
|
|
|
|
|
|
|
|
`myVar *= 5;`
|
|
|
|
|
|
|
|
# --instructions--
|
|
|
|
|
|
|
|
Convert the assignments for `a`, `b`, and `c` to use the `*=` operator.
|
|
|
|
|
|
|
|
# --hints--
|
|
|
|
|
|
|
|
`a` should equal `25`.
|
|
|
|
|
|
|
|
```js
|
|
|
|
assert(a === 25);
|
2018-09-30 23:01:58 +01:00
|
|
|
```
|
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`b` should equal `36`.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(b === 36);
|
|
|
|
```
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
`c` should equal `46`.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
|
|
|
```js
|
2020-11-27 19:02:05 +01:00
|
|
|
assert(c === 46);
|
|
|
|
```
|
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.
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
```js
|
|
|
|
assert(
|
|
|
|
/var a = 5;/.test(code) &&
|
|
|
|
/var b = 12;/.test(code) &&
|
|
|
|
/var c = 4\.6;/.test(code)
|
|
|
|
);
|
|
|
|
```
|
|
|
|
|
|
|
|
# --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 = 5;
|
|
|
|
var b = 12;
|
|
|
|
var c = 4.6;
|
2018-09-30 23:01:58 +01:00
|
|
|
|
2020-11-27 19:02:05 +01:00
|
|
|
// Only change code below this line
|
|
|
|
a = a * 5;
|
|
|
|
b = 3 * b;
|
|
|
|
c = c * 10;
|
|
|
|
```
|
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 = 5;
|
|
|
|
var b = 12;
|
|
|
|
var c = 4.6;
|
|
|
|
|
|
|
|
a *= 5;
|
|
|
|
b *= 3;
|
|
|
|
c *= 10;
|
|
|
|
```
|