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

What is you correct answer

i am correct answer but you alogrithum not correct.

let x = 5;
let y = 2;
// write code here
let z=x+y;
console.log(x+y)

let a = 200;
let b = 25;
// write code here
let c=a/b;
console.log(c)

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

1 Answer

iamabhishek
Try this for the last part of the code,

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


We will improve the instructions for the exercise.

Login / Signup to Answer the Question.