The number of numbers

Report a typo

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);
        }
    }        
}
Enter a number
___

Create a free account to access the full topic