Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 97eef98

Browse files
authored
Merge pull request #1 from shenshin/homework-1
zadanie 1
2 parents 804f55c + 543858d commit 97eef98

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Week1/practice-exercises/1-hello-world.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@
1010
* Hola, mundo! // Spanish
1111
*/
1212

13+
let num = 50;
14+
15+
while (num < 55) {
16+
console.log(num);
17+
num++;
18+
}

0 commit comments

Comments
 (0)