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

Level 3/ Lesson number 4

Can any one help me out with submittable code for the question in Level 3 / Lesson 4
let x =5;
// write code here
x+=12;
console.log(x);

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

let p = 12;
// write code here
p%=5;
console.log(p);
by

2 Answers

kshitijrana14
Try this one:

let x = 5;
// write code here
x += 12;
console.log(x);

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

let p = 12;
p %= 5;
console.log(p);
// write code here
Susanta163bw
Your code's output does not match the expected outcome for this exercise.
After matching the proper output it is displaying this.

Login / Signup to Answer the Question.