mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
195 B
195 B
date | id | title |
---|---|---|
2020-10-30 | f39d2479-e3e5-45dc-8515-93074995a0d6 | JavaScript For Statement |
Syntax
for(let k = 0; k <= 5; k++) {
console.log("For loop k " + k)
}