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

// Only modify code below this line

a = a / 12;
b = b / 4;
c = c / 11;
Console
5
,
index.html
-0:24