-
-
Save creyn/97e42a263a5379d45c835c5cc5139a3a to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : DO w JavaScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var i = 2; | |
do { | |
console.log('Krok: ' + i); | |
i++; | |
} | |
while (i < 2); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment