scrimba
Learn Basic JavaScript
Compound Assignment With Augmented Multiplication
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Compound Assignment With Augmented Multiplication
AboutCommentsNotes
Compound Assignment With Augmented Multiplication
Expand for more info
index.js
run
preview
console
var a = 5;
var b = 12;
var c = 4.6;

// Only modify code below this line

a = a * 5;
b = 3 * b;
c = c * 10;
Console
5
,
index.html
-0:30