From 20e7aaa2c48fe502c399b1058b7cc11d3e316f1e Mon Sep 17 00:00:00 2001 From: Alice Date: Sat, 21 Mar 2026 13:11:30 +0300 Subject: [PATCH] 5,2.js version 1 --- 5,2.js | 6 ++++++ javaScriptTester.html | 7 +++++++ 2 files changed, 13 insertions(+) create mode 100644 5,2.js create mode 100644 javaScriptTester.html diff --git a/5,2.js b/5,2.js new file mode 100644 index 0000000..fdcd74e --- /dev/null +++ b/5,2.js @@ -0,0 +1,6 @@ +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/javaScriptTester.html b/javaScriptTester.html new file mode 100644 index 0000000..6b96700 --- /dev/null +++ b/javaScriptTester.html @@ -0,0 +1,7 @@ + + + This goes in the tab of your browser + + + + \ No newline at end of file