summaryrefslogtreecommitdiff
path: root/scripts/helloworld.js
diff options
context:
space:
mode:
authorpryazha <pryadeiniv@mail.ru>2025-01-02 00:35:49 +0500
committerpryazha <pryadeiniv@mail.ru>2025-01-02 00:35:49 +0500
commitc91b841f79d0c489f9f9526120a5412b4f025cbf (patch)
tree89a396a0aed3bb8649e4fb741e33028009042706 /scripts/helloworld.js
initial commit
Diffstat (limited to 'scripts/helloworld.js')
-rw-r--r--scripts/helloworld.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/helloworld.js b/scripts/helloworld.js
new file mode 100644
index 0000000..32ce9fd
--- /dev/null
+++ b/scripts/helloworld.js
@@ -0,0 +1,8 @@
+let count_number = 10;
+let count;
+for (count = 0;
+ count < count_number;
+ ++count)
+{
+ console.log(count);
+}