summaryrefslogtreecommitdiff
path: root/scripts/helloworld.js
blob: 32ce9fd33ba546c4bbe3838ae81a0ffc6c596ced (plain)
1
2
3
4
5
6
7
8
let count_number = 10;
let count;
for (count = 0;
     count < count_number;
     ++count)
{
    console.log(count);
}