Basic JavaScript - Compound Assignment With Augmented Subtraction

I can’t see why it wont pass the code

let a = 11;
let b = 9;
let c = 3;

// Only change code below this line
a -= 6;
b -= 15;
c -= 1;

Challenge: Basic JavaScript - Compound Assignment With Augmented Subtraction

Link to the challenge:

When I paste your code it passes.

Thanks for checking it. I think it wasn’t logged in properly. Logged out and back in and worked

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.