Im currently learning about break and continue statements. It prints the 1st array, the 2nd array runs the alert like it suppose to, but the third one doesn't run, when i use the continue statement. Maybe im not doing it right? some guidance for a newbie would be nice.
Im using JSBin to run this.
p.s. im learning from the "Begining Javascript" book
Thanks
var n = [233, "john", 432];
var nIndex;
for (nIndex in n) {
    if (isNaN(n[nIndex])) {
        alert(n[nIndex] + " is not a number");
        continue;
    }
    document.write(n[nIndex] + " ");
}
                        
This is how you iterate over the elements of an array:
By the way, you can remove the
continuestatement and instead useelseon the alternate instructions:That's logically equivalent and you may find it easier to read.