From 543858d99916e9b702b84f73d2a9aac13b4d4e45 Mon Sep 17 00:00:00 2001 From: Andrey Ezhov <88992978+Andrej105@users.noreply.github.com> Date: Sun, 25 Sep 2022 18:49:43 +0300 Subject: [PATCH 1/2] zadanie 1 --- Week1/practice-exercises/1-hello-world.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Week1/practice-exercises/1-hello-world.js b/Week1/practice-exercises/1-hello-world.js index e345354..1c1897d 100644 --- a/Week1/practice-exercises/1-hello-world.js +++ b/Week1/practice-exercises/1-hello-world.js @@ -10,3 +10,9 @@ * Hola, mundo! // Spanish */ + let num = 50; + + while (num < 55) { + console.log(num); + num++; + } \ No newline at end of file From 911f4b0a478118715fe7647581cbf4178a1c1eb1 Mon Sep 17 00:00:00 2001 From: Aleksandr Shenshin Date: Sun, 25 Sep 2022 20:06:13 +0200 Subject: [PATCH 2/2] recover --- Week1/practice-exercises/1-hello-world.js | 1 - 1 file changed, 1 deletion(-) diff --git a/Week1/practice-exercises/1-hello-world.js b/Week1/practice-exercises/1-hello-world.js index e345354..c024c30 100644 --- a/Week1/practice-exercises/1-hello-world.js +++ b/Week1/practice-exercises/1-hello-world.js @@ -9,4 +9,3 @@ * Ciao, mondo! // Italian * Hola, mundo! // Spanish */ -