diff options
Diffstat (limited to 'scripts/helloworld.js')
-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); +} |