scrimba
Learn Basic JavaScript
Compound Assignment With Augmented Addition
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 Addition
AboutCommentsNotes
Compound Assignment With Augmented Addition
Expand for more info
index.js
run
preview
console
var a = 3;
var b = 17;
var c = 12;

// Only modify code below this line

a = a + 12;
b = 9 + b;
c = c + 7;
Console
5
,
index.html
-0:57