Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Level 3 Lesson 4 Javascript - unable to pass through this step.

Results are as expected and I believe I have done everything right. Even then code editor says there is an error.

let x = 5;
x+=12;
console.log(x);

let a = 200;
a/=50;
console.log(a);


let p = 12;
p%=5;
console.log(p);
by

2 Answers

shamin
let x = 5;
x+=12;
console.log(x);
let a = 200;
a/=50;
console.log(a);
let p = 12;
p%=5;
console.log(p);

This was my code which is exactly the same as yours, I believe there must be some system errors. Try again, hopefully, it will work!
richard2022
Thank you Shamin. They fixed the background code few days later.

Login / Signup to Answer the Question.