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

Level3 lesson4

code is correct but not getting the output.
var x = 5;
x += 12;
console.log(x);

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

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

1 Answer

Abhisheke3yvz
Your code is absolutely correct, there was some issue because of some code changes we did with the application. We have fixed it, it should work now. Please try again after refreshing the application.

Login / Signup to Answer the Question.