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);