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

// Only modify code below this line

a = a - 6;
b = b - 15;
c = c - 1;
Console
5
,
index.html
-0:53