diff --git a/5/5,2.js b/5/5,2.js deleted file mode 100644 index fdcd74e..0000000 --- a/5/5,2.js +++ /dev/null @@ -1,6 +0,0 @@ -let counter = 0; -let step = 4; -do{ - counter = counter + step; - console.log(counter); -} while(counter < 100) \ No newline at end of file diff --git a/5/5,3.js b/5/5,3.js deleted file mode 100644 index 096b73c..0000000 --- a/5/5,3.js +++ /dev/null @@ -1,9 +0,0 @@ -let myWork = []; - -for (let i = 1; i <= 10; i++) { - let status = i % 2 === 0 ? true : false; - let lesson = { name: 'Lesson ' + i, status: status}; - myWork.push(lesson); -} - -console.log(myWork); \ No newline at end of file diff --git a/5/javaScriptTester.html b/5/javaScriptTester.html deleted file mode 100644 index 6b96700..0000000 --- a/5/javaScriptTester.html +++ /dev/null @@ -1,7 +0,0 @@ - - -