Signup/Sign In

Answers

All questions must be answered. Here are the Answers given by this user in the Forum.

let x = 0;

while(x < 10)
{

console.log(x);

if(x===5){

break;
}
x+=x;


}
console.log();
one year ago