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

Level 5/ lesson 4

do while loop
by

1 Answer

ramakrishna1
let i = 0;
do
{
console.log("--" + i + "--");
i += 5;
}
while(i<=50);

Login / Signup to Answer the Question.