This commit is contained in:
louiscklaw
2025-02-01 02:11:27 +08:00
parent 3de8aea20a
commit 5cb71f7386
4 changed files with 58 additions and 0 deletions

7
hello_for_loop.js Normal file
View File

@@ -0,0 +1,7 @@
debugger;
console.log('helloworld' + 1)
for (let i =0; i < 5; i++){
console.log('helloworld' + i)
}