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

Level 5 lesson 6 of js

please share this code of js.
by

1 Answer

kshitijrana14
Try this one

let x = 0;

while(x < 10){
if(x === 5) {
x++;
continue;
}
console.log(x);
x++;
}

Login / Signup to Answer the Question.