How many numbers does the following code print?
for (let i = 0; i < 5; i++) {
console.log(i);
if (i < 3) {
continue;
} else {
for (let j = 0; j < 5; j++) {
console.log(j);
}
}
}How many numbers does the following code print?
for (let i = 0; i < 5; i++) {
console.log(i);
if (i < 3) {
continue;
} else {
for (let j = 0; j < 5; j++) {
console.log(j);
}
}
}Create a free account to access the full topic