You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
240 B
JavaScript

/*
for (var i=0; i<10; i=i+2) { //i - loop control variable
console.log(i);
}
*/
for (i=0; i<10; i++){
for(j=0; j<5; j++){
console.log(j);
}
}
/*
var i = 0;
while (i<10){
console.log(i);
i++;
}
*/