diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-01-02 00:35:49 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-01-02 00:35:49 +0500 |
commit | c91b841f79d0c489f9f9526120a5412b4f025cbf (patch) | |
tree | 89a396a0aed3bb8649e4fb741e33028009042706 /scripts |
initial commit
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/helloworld.js | 8 |
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); +} |