-
Notifications
You must be signed in to change notification settings - Fork 478
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DO WHILE loop is not working #52
Comments
Thanks for quick update.whatever you give perfectly fine for while loop.Do while before checking the condition we have to show do statement. |
DO-WHILE loop should be distinguished from WHILE loop. Hope this can be fixed in next version. |
@lhttjdr |
I think I can fix this issue, can u assign it for me? @Bogdan-Lyashenko |
Yeah, go ahead! Thx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Bogdan-Lyashenko
I have simple do while loop. i am trying to generate the chart,that chart i am not able see the 'do'.
function Recorder() {
var i = 1;
do
{
i++;
console.log(i);
}
while(i<=10);
{
}
}
Please help me solve this.
Thanks.
The text was updated successfully, but these errors were encountered: