Answers for "create a forloop"

0

create a forloop

Ex: Creating a loop the runs from 0 to 9

let i
for(i = 0; i < 10; i++){
	console.log('i')
}
Posted by: Guest on June-10-2021

Browse Popular Code Answers by Language