create a forloop code example
Example: create a forloop
Ex: Creating a loop the runs from 0 to 9
let i
for(i = 0; i < 10; i++){
console.log('i')
}
Ex: Creating a loop the runs from 0 to 9
let i
for(i = 0; i < 10; i++){
console.log('i')
}