-
-
Save creyn/216028b5cf80a707e97bdae0d03a45c0 to your computer and use it in GitHub Desktop.
Droga Programisty : Kod : WHILE 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; | |
while (i < 2) { | |
console.log('Krok: ' + i); | |
i++; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment